Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/libgc/doc
diff options
context:
space:
mode:
authorEdward Betts <edward@4angle.com>2017-02-21 14:03:07 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2017-02-21 14:03:07 +0300
commit539a6580da4236c0bd9efae80acb49dd38d408a6 (patch)
treeb7292de0ce60b9bdbedbdb8166d8718d96bcc86e /libgc/doc
parent4ccd94d7ccf69cc52532ea920b2d1b48f9c6a7cc (diff)
correct spelling mistakes (#4405)
Diffstat (limited to 'libgc/doc')
-rw-r--r--libgc/doc/README.changes2
-rw-r--r--libgc/doc/README.macros2
2 files changed, 2 insertions, 2 deletions
diff --git a/libgc/doc/README.changes b/libgc/doc/README.changes
index fa6f279f518..c30d2fc2184 100644
--- a/libgc/doc/README.changes
+++ b/libgc/doc/README.changes
@@ -1872,7 +1872,7 @@ Since 6.2alpha6:
- Fixed Makefile.direct for DARWIN. (Thanks to Manuel Serrano.)
- There was a race between GC_pthread_detach and thread exit that could
result in a thread structure being deallocated by GC_pthread_detach
- eventhough it was still needed by the thread exit code. (Thanks to
+ even though it was still needed by the thread exit code. (Thanks to
Dick Porter for the small test case that allowed this to be debugged.)
- Fixed version parsing for non-alpha versions in acinclude.m4 and
version checking in version.h.
diff --git a/libgc/doc/README.macros b/libgc/doc/README.macros
index df0ef2cda93..153a3e0f914 100644
--- a/libgc/doc/README.macros
+++ b/libgc/doc/README.macros
@@ -19,7 +19,7 @@ relatively easy to adapt to new compilers with a different set of predefined
macros. Currently these macros generally identify platforms instead of
features. In many cases, this is a mistake.
-3) The code currently avoids #elif, eventhough that would make it more
+3) The code currently avoids #elif, even though that would make it more
readable. This was done since #elif would need to be understood by ALL
compilers used to build the collector, and that hasn't always been the case.
It makes sense to reconsider this decision at some point, since #elif has been