diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-07-17 17:31:20 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-07-17 17:31:20 -0700 |
commit | e4c7841eb916f8ad65bfe63daef0f1e81252c704 (patch) | |
tree | cfe9750519e2d6e4e55dae0cb60675e735e1fe05 | |
parent | be3c7a7621e89bbde2884585179b9e4c5b9e6639 (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.md | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | include/X11/extensions/Xrandr.h | 2 | ||||
-rw-r--r-- | src/Xrandrint.h | 4 |
4 files changed, 5 insertions, 5 deletions
@@ -9,7 +9,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/libXrandr diff --git a/configure.ac b/configure.ac index c8ea789..7e3e29b 100644 --- a/configure.ac +++ b/configure.ac @@ -52,7 +52,7 @@ XORG_CHECK_MALLOC_ZERO RANDR_VERSION=[`echo $VERSION | sed 's/^\([0-9][0-9]*\.[0-9][0-9]*\).*$/\1/'`] AC_SUBST(RANDR_VERSION) -# Obtain compiler/linker options for depedencies +# Obtain compiler/linker options for dependencies PKG_CHECK_MODULES(RANDR, [x11 >= 1.6] randrproto >= $RANDR_VERSION xext xextproto xrender renderproto) AC_CONFIG_FILES([Makefile diff --git a/include/X11/extensions/Xrandr.h b/include/X11/extensions/Xrandr.h index 65940bb..3149c9b 100644 --- a/include/X11/extensions/Xrandr.h +++ b/include/X11/extensions/Xrandr.h @@ -210,7 +210,7 @@ int XRRRootToScreen(Display *dpy, Window root); /* * returns the screen configuration for the specified screen; does a lazy - * evalution to delay getting the information, and caches the result. + * evaluation to delay getting the information, and caches the result. * These routines should be used in preference to XRRGetScreenInfo * to avoid unneeded round trips to the X server. These are new * in protocol version 0.1. diff --git a/src/Xrandrint.h b/src/Xrandrint.h index 75facac..5b04f9b 100644 --- a/src/Xrandrint.h +++ b/src/Xrandrint.h @@ -60,8 +60,8 @@ struct _XRRScreenConfiguration { }; /* - * if a configure notify on the root is recieved, or - * an XRRScreenChangeNotify is recieved, + * if a configure notify on the root is received, or + * an XRRScreenChangeNotify is received, * XRRUpdateConfiguration should be called to update the X library's * view of the screen configuration; it will also invalidate the cache * provided by XRRScreenConfig and XRRConfig, and force a round trip |