]> granicus.if.org Git - gc/commitdiff
Fix various typos in comments and printed messages
authorKlemens Zwischenbrugger <ka7@la-evento.com>
Mon, 20 Feb 2017 21:17:57 +0000 (00:17 +0300)
committerIvan Maidanski <ivmai@mail.ru>
Fri, 7 Apr 2017 08:09:44 +0000 (11:09 +0300)
This patch contains some spelling fixes (just in comments and C strings
passed to printf) as found by bot (https://github.com/ka7/misspell_fixer).

* SMakefile.amiga: Fix typo in comment ("don't").
* WCC_MAKEFILE (SYSTEM): Fix typo in comment ("uncomment").
* configure.ac [!GCC] (gc_cflags): Fix typo in comment ("actually").
* configure.ac (NO_CLOCK): Fix typo in comment ("targeting").
* doc/README.amiga: Fix typos in documentation ("there's", "compliant",
"documentation").
* extra/AmigaOS.c [GC_AMIGA_PRINTSTATS] (GC_amiga_free_all_mem): Fix
typos in printed messages ("succeeded", "succeeding").
* include/gc.h (GC_get_heap_size): Fix typo in comment ("below").
* tools/setjmp_t.c (main): Fix typo in printed message ("won't").

SMakefile.amiga
WCC_MAKEFILE
configure.ac
doc/README.amiga
extra/AmigaOS.c
include/gc.h
tools/setjmp_t.c

index 229f184f729fe8e72ffe7b1e2ea31d4167066ff2..51dc0bb4e45b4381bc83aeff919df374239e9deb 100644 (file)
@@ -1,6 +1,6 @@
 
 # Rewritten smakefile for amiga / sas/c. -Kjetil M.
-# Dont use the cord-package if you define parm=both or parm=reg.
+# Don't use the cord-package if you define parm=both or parm=reg.
 
 
 #----------------TOOLS--------------------------------
index 0257f71584a437fdfefa25f2bfc39041e7377e1e..b39df38e3c577f381026d0cec1ffe16940e9fe6c 100644 (file)
@@ -1,7 +1,7 @@
 # Makefile for Watcom C/C++ 10.5, 10.6, 11.0 on NT, OS2 and DOS4GW.
 # May work with Watcom 10.0.
 
-# Uncoment one of the lines below for cross compilation.
+# Uncomment one of the lines below for cross compilation.
 SYSTEM=MSWIN32
 #SYSTEM=DOS4GW
 #SYSTEM=OS2
index 9e465a5213030b1baba9d780d236913a4f8ca0df..9eb7f4fd270c603cd1732d74aa53af545fcd40a1 100644 (file)
@@ -51,7 +51,7 @@ else
         if test :$GCC: != :"yes": ; then
             gc_cflags="${gc_flags} +ESdbgasm"
         fi
-        # :TODO: actaully we should check using Autoconf if
+        # :TODO: actually we should check using Autoconf if
         #     the compiler supports this option.
         ;;
     esac
@@ -838,7 +838,7 @@ fi
 
 dnl This is something of a hack.  When cross-compiling we turn off
 dnl some functionality.  We also enable the "small" configuration.
-dnl These is only correct when targetting an embedded system.  FIXME.
+dnl These is only correct when targeting an embedded system.  FIXME.
 if test -n "${with_cross_host}"; then
    AC_DEFINE([NO_CLOCK], 1, [Define to not use system clock (cross compiling).])
    AC_DEFINE([SMALL_CONFIG], 1,
index bf18d3f68ac1c59de1cb034c938b2fd810728ad3..d06a4e98ea8b1b701745b4f41dbcf9fb2a798fc2 100644 (file)
@@ -48,7 +48,7 @@ WHATS NEW:
                  It is also the most important flag to set to prevent
                  GC from returning chip-mem. Beware that it slows down a lot
                  when a program is rapidly allocating/deallocating when
-                 theres either very little fast-memory left or verly little
+                 there's either very little fast-memory left or verly little
                  chip-memory left. Its not a very common situation, but gctest
                  sometimes (very rare) use many minutes because of this.
 
@@ -252,7 +252,7 @@ will not behave well with Amiga specific code. Especially not inter-
 process comms via messages, and setting up public structures like
 Intuition objects or anything else in the system lists. For the
 time being the use of this library is limited to single threaded
-ANSI/POSIX  compliant or near-complient code. (ie. Stick to stdio
+ANSI/POSIX  compliant or near-compliant code. (ie. Stick to stdio
 for now). Given this limitation there is currently no mechanism for
 allocating "CHIP" or "PUBLIC" memory under the garbage collector.
 I'll add this after giving it considerable thought. The major
@@ -263,7 +263,7 @@ If you allocate your own stack in client code, you will have to
 assign the pointer plus stack size to GC_stackbottom.
 
 The initial stack size of the target program can be compiled in by
-setting the __stack symbol (see SAS documentaion). It can be over-
+setting the __stack symbol (see SAS documentation). It can be over-
 ridden from the CLI by running the AmigaDOS "stack" program, or from
 the WorkBench by setting the stack size in the tool types window.
 
index 7d4fb6cf61d26f77afcd8ebacbc4b09e296f5a88..5a916e3a0685eb5494378b9ecc4f706c66781d30 100644 (file)
@@ -301,11 +301,11 @@ void GC_amiga_free_all_mem(void){
         printf("GC_gcollect was called %d times to avoid returning NULL or start allocating with the MEMF_ANY flag.\n",numcollects);
         printf("%d of them was a success. (the others had to use allocation from the OS.)\n",nullretries);
         printf("\n");
-        printf("Succeded forcing %d gc-allocations (%d bytes) of chip-mem to be fast-mem.\n",succ,succ2);
+        printf("Succeeded forcing %d gc-allocations (%d bytes) of chip-mem to be fast-mem.\n",succ,succ2);
         printf("Failed forcing %d gc-allocations (%d bytes) of chip-mem to be fast-mem.\n",nsucc,nsucc2);
         printf("\n");
         printf(
-                "Number of retries before succeding a chip->fast force:\n"
+                "Number of retries before succeeding a chip->fast force:\n"
                 "0: %d, 1: %d, 2-9: %d, 10-49: %d, 50-149: %d, >150: %d\n",
                 cur0,cur1,cur10,cur50,cur150,cur151
         );
index b376a1be70735260018462de68406f35f12bf2f6..4f02010a8294be253846be3a1af737de77595297 100644 (file)
@@ -597,7 +597,7 @@ GC_API GC_stop_func GC_CALL GC_get_stop_func(void);
 /* This getter remains lock-free (unsynchronized) for compatibility     */
 /* reason since some existing clients call it from a GC callback        */
 /* holding the allocator lock.  (This API function and the following    */
-/* four ones bellow were made thread-safe in GC v7.2alpha1 and          */
+/* four ones below were made thread-safe in GC v7.2alpha1 and          */
 /* reverted back in v7.2alpha7 for the reason described.)               */
 GC_API size_t GC_CALL GC_get_heap_size(void);
 
index 072474150370124cf3382cb8dbdb73d119a71037..05798c2685ebabd9af831835dae339d96c8b351d 100644 (file)
@@ -108,7 +108,7 @@ int main(void)
     setjmp(b);
     if (y == 1) {
       if (x == 2) {
-        printf("Setjmp-based generic mark_regs code probably wont work.\n");
+        printf("Setjmp-based generic mark_regs code probably won't work.\n");
         printf("But we rarely try that anymore.  If you have getcontect()\n");
         printf("this probably doesn't matter.\n");
       } else if (x == 1) {