diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2021-11-28 14:39:06 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2021-11-28 14:39:06 -0800 |
commit | 63e7fce72d704036016258b2cb55c5624f571d92 (patch) | |
tree | 0b124c68484509da08e2ebe4f5ae4e7519f62674 | |
parent | 233611e5a2bc11cb0a965040166c2e4787b946a4 (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-- | Written/FilledRects | 2 | ||||
-rw-r--r-- | Written/Notes | 2 | ||||
-rw-r--r-- | interpret.c | 2 |
4 files changed, 4 insertions, 4 deletions
@@ -6,7 +6,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/xgc diff --git a/Written/FilledRects b/Written/FilledRects index d72849e..83cf106 100644 --- a/Written/FilledRects +++ b/Written/FilledRects @@ -72,7 +72,7 @@ Possibly stipple: like tile Other: - alignment on word bounaries: fastest when one is changing whole + alignment on word boundaries: fastest when one is changing whole words at a time. That way, you're just setting whole words to 0 or ~0 and not doing any computation. A 32x1 rectangle should be much faster than a 1x32 rectangle. diff --git a/Written/Notes b/Written/Notes index 3b9f416..971e67a 100644 --- a/Written/Notes +++ b/Written/Notes @@ -8,7 +8,7 @@ credit to servers for optimizing small ones. Data: Pixels per second. Breaking that down into large and small areas would probably not - be userful. + be useful. GC Fields: None. diff --git a/interpret.c b/interpret.c index bd7e1fd..3978ed3 100644 --- a/interpret.c +++ b/interpret.c @@ -266,7 +266,7 @@ GC_change_arcmode(int arcmode, Boolean feedback) void GC_change_dashlist(int dashlist, Boolean feedback) { - char dasharray[DASHLENGTH]; /* what we're gonna pass to XSetDashes */ + char dasharray[DASHLENGTH]; /* what we're going to pass to XSetDashes */ int dashnumber = 0; /* which element of dasharray we're currently modifying */ int i; /* which bit of the dashlist we're on */ |