summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2022-01-09 13:33:58 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2022-01-09 13:33:58 -0800
commit01a36ae3d97e01e5c3ae3cf730fceabb66a9f235 (patch)
tree8faec1a98b9eba2f3e3f87169c3f82e1bf06782b
parentfe06632d4126013747e896df4528537fc7136396 (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--difs/fonts.c2
-rw-r--r--difs/swaprep.c4
-rw-r--r--doc/xfs-design.xml4
-rw-r--r--os/config.c2
-rw-r--r--os/connection.c2
-rw-r--r--os/utils.c2
7 files changed, 9 insertions, 9 deletions
diff --git a/README.md b/README.md
index 277bfa4..f80ea6e 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,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/app/xfs
diff --git a/difs/fonts.c b/difs/fonts.c
index fdb923a..30f0a65 100644
--- a/difs/fonts.c
+++ b/difs/fonts.c
@@ -740,7 +740,7 @@ bail:
}
/*
- * expects comma seperated string
+ * expects comma separated string
*/
int
SetFontCatalogue(
diff --git a/difs/swaprep.c b/difs/swaprep.c
index 2cefb0b..ade80b5 100644
--- a/difs/swaprep.c
+++ b/difs/swaprep.c
@@ -124,7 +124,7 @@ CopySwap32Write(
while (to < toLast) {
/*
* can't write "cpswapl(*from++, *to++)" because cpswapl is a
- * macro that evaulates its args more than once
+ * macro that evaluates its args more than once
*/
cpswapl(*from, *to);
from++;
@@ -175,7 +175,7 @@ CopySwap16Write(
while (to < toLast) {
/*
* can't write "cpswaps(*from++, *to++)" because cpswaps is a
- * macro that evaulates its args more than once
+ * macro that evaluates its args more than once
*/
cpswaps(*from, *to);
from++;
diff --git a/doc/xfs-design.xml b/doc/xfs-design.xml
index 14ec7ca..c37a1e3 100644
--- a/doc/xfs-design.xml
+++ b/doc/xfs-design.xml
@@ -1269,7 +1269,7 @@ char *NameForAtom(Atom atom)
metrics or glyphs. If the glyphs are built, they will use any
supplied <emphasis remap='I'>format hint</emphasis>.</para>
- <para>Whenever a new font is successfuly opened, the font and
+ <para>Whenever a new font is successfully opened, the font and
its name pattern will be placed in a name cache. This cache
exists to minimize the amount of work spent searching for a
font. It will be flushed when the font catalogue is
@@ -1373,7 +1373,7 @@ char *NameForAtom(Atom atom)
<varlistentry>
<term><literal>clone-self</literal> <type>(boolean)</type></term>
<listitem><para>Whether this FS should attempt to clone itself or
- use delegates when it reachs the client-limit.</para></listitem>
+ use delegates when it reaches the client-limit.</para></listitem>
</varlistentry>
<varlistentry>
<term><literal>default-point-size</literal> <type>(cardinal)</type></term>
diff --git a/os/config.c b/os/config.c
index d651d7e..a81a88c 100644
--- a/os/config.c
+++ b/os/config.c
@@ -530,7 +530,7 @@ config_set_catalogue(
fsfree((char *) font_catalogue); /* dump any previous one */
b = font_catalogue = (char *) fsalloc(strlen(val) + 1);
if (!font_catalogue)
- FatalError("insufficent memory for font catalogue\n");
+ FatalError("insufficient memory for font catalogue\n");
while (*val) { /* remove all the gunk */
if (!isspace(*val)) {
*b++ = *val;
diff --git a/os/connection.c b/os/connection.c
index 34458d7..f0680b6 100644
--- a/os/connection.c
+++ b/os/connection.c
@@ -480,7 +480,7 @@ CloseDownConnection(ClientPtr client)
/****************
* IgnoreClient
* Removes one client from input masks.
- * Must have cooresponding call to AttendClient.
+ * Must have corresponding call to AttendClient.
****************/
static fd_set IgnoredClientsWithInput;
diff --git a/os/utils.c b/os/utils.c
index f9d6cab..2bb0f8c 100644
--- a/os/utils.c
+++ b/os/utils.c
@@ -212,7 +212,7 @@ OsInitAllocator (void)
*
* transport_id/fd/portnum[,transport_id/fd/portnum]...
*
- * [] denotes optional and ... denotes repitition.
+ * [] denotes optional and ... denotes repetition.
*
* The string must be _exactly_ in the above format.
*/