Skip to content

Commit 8366310

Browse files
committed
Fix small misspellings
1 parent 198dcdb commit 8366310

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1674,7 +1674,7 @@ UML_LOOK = NO
16741674
# the class node. If there are many fields or methods and many nodes the
16751675
# graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS
16761676
# threshold limits the number of items for each type to make the size more
1677-
# managable. Set this to 0 for no limit. Note that the threshold may be
1677+
# manageable. Set this to 0 for no limit. Note that the threshold may be
16781678
# exceeded by 50% before the limit is enforced.
16791679

16801680
UML_LIMIT_NUM_FIELDS = 10

bin/compton-trans

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ for v in "$@"; do
5050
done
5151

5252
# This takes into account the fact that getopts stops on
53-
# any argument it doesn't recongize or errors on. This
53+
# any argument it doesn't recognize or errors on. This
5454
# allows for things like `compton-trans -5` as well
5555
# as `compton-trans -c +5 -s` (contrived example).
5656
while test $# -gt 0; do

meson_options.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ option('regex', type: 'boolean', value: true, description: 'Enable regex support
66
option('vsync_drm', type: 'boolean', value: false, description: 'Enable support for using drm for vsync')
77

88
option('opengl', type: 'boolean', value: true, description: 'Enable features that require opengl (opengl backend, and opengl vsync methods)')
9-
option('dbus', type: 'boolean', value: true, description: 'Enable suport for D-Bus remote control')
9+
option('dbus', type: 'boolean', value: true, description: 'Enable support for D-Bus remote control')
1010

1111
option('xrescheck', type: 'boolean', value: false, description: 'Enable X resource leak checker (for debug only)')
1212

src/c2.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#ifdef CONFIG_REGEX_PCRE
2020
#include <pcre.h>
2121

22-
// For compatiblity with <libpcre-8.20
22+
// For compatibility with <libpcre-8.20
2323
#ifndef PCRE_STUDY_JIT_COMPILE
2424
#define PCRE_STUDY_JIT_COMPILE 0
2525
#define LPCRE_FREE_STUDY(extra) pcre_free(extra)

src/render.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -890,7 +890,7 @@ void paint_all(session_t *ps, win *const t, bool ignore_damage) {
890890

891891
// Calculate the paint region based on the reg_ignore of the current
892892
// window and its bounding region.
893-
// Remeber, reg_ignore is the union of all windows above the current
893+
// Remember, reg_ignore is the union of all windows above the current
894894
// window.
895895
pixman_region32_subtract(&reg_tmp, &region, w->reg_ignore);
896896
pixman_region32_intersect(&reg_tmp, &reg_tmp, &bshape);

0 commit comments

Comments
 (0)