summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dpi/ftp.c2
-rw-r--r--src/findbar.cc4
2 files changed, 3 insertions, 3 deletions
diff --git a/dpi/ftp.c b/dpi/ftp.c
index ee7aad8f..139444c9 100644
--- a/dpi/ftp.c
+++ b/dpi/ftp.c
@@ -3,7 +3,7 @@
*
* This server checks the ftp-URL to be a directory (requires wget).
* If true, it sends back an html representation of it, and if not
- * a dpip message (which is catched by dillo who redirects the ftp URL
+ * a dpip message (which is caught by dillo who redirects the ftp URL
* to the downloads server).
*
* Feel free to polish!
diff --git a/src/findbar.cc b/src/findbar.cc
index f5f8aad4..e8a5883c 100644
--- a/src/findbar.cc
+++ b/src/findbar.cc
@@ -37,7 +37,7 @@ int MyInput::handle(int e)
unsigned modifier = event_state() & (SHIFT | CTRL | ALT | META);
if (modifier == 0) {
if (e == KEY && k == EscapeKey) {
- _MSG("findbar NewInput: catched EscapeKey\n");
+ _MSG("findbar NewInput: caught EscapeKey\n");
ret = 0;
}
}
@@ -114,7 +114,7 @@ Findbar::Findbar(int width, int height, UI *ui) :
// todo: search previous would be nice
findb = new HighlightButton(x, border, button_width, height, "&Next");
x += button_width + gap;
- findb->tooltip("Find next occurence of the search phrase");
+ findb->tooltip("Find next occurrence of the search phrase");
findb->add_shortcut(ReturnKey);
findb->add_shortcut(KeypadEnter);
findb->callback(findbar_search_cb, this);