summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2022-02-20 10:35:23 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2022-02-20 10:35:23 -0800
commitac1bd034e273eeeb4169d0ee40b70b00a6ba5dbd (patch)
tree016e0ec4d17572297561935ba4a96b3187c42f2b
parentbe972ebc3a97292e7d2b2350eff55ae12df99a42 (diff)
Fix spelling/wording issues
Found by using: codespell --builtin clear,rare,usage,informal,code,names Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--README.md2
-rw-r--r--configure.ac2
-rw-r--r--include/X11/extensions/applewm.h2
-rw-r--r--man/AppleWM.man4
4 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index 801bb36..1fd2a4a 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@ Xorg mailing list:
https://lists.x.org/mailman/listinfo/xorg
-The master development code repository can be found at:
+The primary development code repository can be found at:
https://gitlab.freedesktop.org/xorg/lib/libAppleWM
diff --git a/configure.ac b/configure.ac
index 6202f57..507d34f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -39,7 +39,7 @@ XORG_MACROS_VERSION(1.8)
XORG_DEFAULT_OPTIONS
XORG_CHECK_MALLOC_ZERO
-# Obtain compiler/linker options for depedencies
+# Obtain compiler/linker options for dependencies
PKG_CHECK_MODULES(APPLEWM, x11 xext xextproto [applewmproto >= 1.4])
AC_CONFIG_FILES([Makefile
diff --git a/include/X11/extensions/applewm.h b/include/X11/extensions/applewm.h
index 14890c9..a84fa10 100644
--- a/include/X11/extensions/applewm.h
+++ b/include/X11/extensions/applewm.h
@@ -34,7 +34,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
typedef struct {
int type; /* of event */
unsigned long serial; /* # of last request processed by server */
- Bool send_event; /* true if this came frome a SendEvent request */
+ Bool send_event; /* true if this came from a SendEvent request */
Display *display; /* Display the event was read from */
Window window; /* window of event */
Time time; /* server timestamp when event happened */
diff --git a/man/AppleWM.man b/man/AppleWM.man
index 5620ab5..b6866ab 100644
--- a/man/AppleWM.man
+++ b/man/AppleWM.man
@@ -241,12 +241,12 @@ A more complete description will be forthcoming eventually.
.SH FUNCTIONS
.B XAppleWMDisableUpdate
causes any updates to the windows on the screen to be queued until updates
-are reenabled with \fBXAppleWMReenableUpdate\fP. This is useful to avoid
+are re-enabled with \fBXAppleWMReenableUpdate\fP. This is useful to avoid
intermediate redraws to the screen if a number of changes are going to be
made at once. Updates should only be disabled temporarily while drawing
to a window. These calls may be nested and each call to
\fBXAppleWMDisableUpdate\fP must be paired with a subsequent call to
-\fBXAppleWMReenableUpdate\fP. Updating is not reenabled until the last
+\fBXAppleWMReenableUpdate\fP. Updating is not re-enabled until the last
unnested call to \fBXAppleWMReenableUpdate\fP. Disabling updates applies
to window content; however, it is implementation dependent whether window
size and position changes are disabled as well.