commit: 508cf3ec91948a76c81010a0657c047205ba2dc6
parent 48f0fb7fc190c646150e44326da68c063ff9b626
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Fri, 26 Apr 2024 15:48:46 +0200
Fix spelling errors
Diffstat:
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/badwolf.1 b/badwolf.1
@@ -14,7 +14,7 @@
.Op Ar URLs or paths
.Sh DESCRIPTION
.Nm
-is a minimalist browser that cares about privacy, it is based on WebKitGTK and thus also accepts WebKitGTK (and dependencies) flags and environment variables, unfortunately there doesn't seems to be manpages for theses.
+is a minimalist browser that cares about privacy, it is based on WebKitGTK and thus also accepts WebKitGTK (and dependencies) flags and environment variables, unfortunately there doesn't seems to be manpages for these.
.Pp
.Sh OPTIONS
.Bl -tag -width Ds
diff --git a/badwolf.c b/badwolf.c
@@ -848,7 +848,7 @@ new_browser(const gchar *target_url, struct Client *old_browser)
g_signal_connect(
browser->forward, "button-release-event", G_CALLBACK(widgetCb_drop_button3_event), NULL);
- /* signals for javacript toggle widget */
+ /* signals for javascript toggle widget */
g_signal_connect(browser->javascript, "toggled", G_CALLBACK(javascriptCb_toggled), browser);
/* prevents GtkNotebook from spawning it's context-menu */
g_signal_connect(
diff --git a/configure b/configure
@@ -137,13 +137,13 @@ CFLAGS="${CFLAGS} -Wall -Wextra -Wconversion -Wsign-conversion -Werror=implicit-
## System checks
# commands
-printf 'Checking %s command existance ...' "${PKGCONFIG}"
+printf 'Checking %s command existence ...' "${PKGCONFIG}"
command -v "${PKGCONFIG}" >/dev/null ; required
-printf 'Checking %s command existance ...' "${CC}"
+printf 'Checking %s command existence ...' "${CC}"
command -v "${CC}" >/dev/null ; required
-printf 'Checking %s command existance ...' "${ED}"
+printf 'Checking %s command existence ...' "${ED}"
if command -v "${ED}" >/dev/null ; is_ok
then
:
@@ -152,7 +152,7 @@ else
ED="false"
fi
-printf 'Checking %s command existance ...' "${MANDOC}"
+printf 'Checking %s command existence ...' "${MANDOC}"
if command -v "${MANDOC}" >/dev/null ; is_ok
then
lint_targets="${lint_targets} lint_mandoc"
@@ -161,7 +161,7 @@ else
MANDOC="true"
fi
-printf 'Checking %s command existance ...' "${XGETTEXT}"
+printf 'Checking %s command existence ...' "${XGETTEXT}"
if command -v "${XGETTEXT}" >/dev/null ; is_ok
then
:
@@ -170,7 +170,7 @@ else
XGETTEXT="true"
fi
-printf 'Checking %s command existance ...' "${MSGMERGE}"
+printf 'Checking %s command existence ...' "${MSGMERGE}"
if command -v "${MSGMERGE}" >/dev/null ; is_ok
then
:
@@ -179,7 +179,7 @@ else
MSGMERGE="true"
fi
-printf 'Checking %s command existance ...' "${SHELLCHECK}"
+printf 'Checking %s command existence ...' "${SHELLCHECK}"
if command -v "${SHELLCHECK}" >/dev/null ; is_ok
then
lint_targets="${lint_targets} lint_shellcheck"
@@ -188,7 +188,7 @@ else
SHELLCHECK="true"
fi
-printf 'Checking %s command existance ...' "${FLAWFINDER}"
+printf 'Checking %s command existence ...' "${FLAWFINDER}"
if command -v "${FLAWFINDER}" >/dev/null ; is_ok
then
lint_targets="${lint_targets} lint_flawfinder"
@@ -197,7 +197,7 @@ else
FLAWFINDER="true"
fi
-printf 'Checking %s command existance ...' "${REUSE}"
+printf 'Checking %s command existence ...' "${REUSE}"
if command -v "${REUSE}" >/dev/null ; is_ok
then
lint_targets="${lint_targets} lint_reuse"
diff --git a/keybindings.c b/keybindings.c
@@ -64,7 +64,7 @@ toggle_caret_browsing(WebKitWebView *webView)
/* commonCb_key_press_event: Global callback for keybindings
*
- * Theses shortcuts should be avoided as much as possible:
+ * These shortcuts should be avoided as much as possible:
* - Single key shortcuts (ie. backspace and space)
* - Triple key shortcuts (except for Ctrl+Shift)
* - Unix Terminal shortcuts (specially Ctrl-W)