]> granicus.if.org Git - gc/commitdiff
Fix typos in documentation (for extend_size_map and ews4800)
authorIvan Maidanski <ivmai@mail.ru>
Mon, 23 Oct 2017 21:10:12 +0000 (00:10 +0300)
committerIvan Maidanski <ivmai@mail.ru>
Mon, 23 Oct 2017 21:28:44 +0000 (00:28 +0300)
* doc/README.ews4800: Fix typos ("32-bit", "64-bit").
* misc.c (GC_extend_size_map): Fix typo ("16-byte") in a comment.

doc/README.ews4800
misc.c

index 20ecbaabe67d35182fe7ed0d4c99039b2fdd3da2..da4cff3987c0455a2af1b198afa17f2f342ced9e 100644 (file)
@@ -2,7 +2,8 @@ GC on EWS4800
 -------------
 
 1. About EWS4800
-   EWS4800 is 32bit/64bit workstation.
+
+ EWS4800 is a 32/64-bit workstation.
 
      Vendor: NEC Corporation
      OS: UX/4800 R9.* - R13.* (SystemV R4.2)
@@ -10,19 +11,19 @@ GC on EWS4800
 
 2. Compiler
 
- 32bit:
+ 32-bit:
    Use ANSI C compiler.
      CC = /usr/abiccs/bin/cc
 
- 64bit:
-   Use 64bit ANSI C compiler.
+ 64-bit:
+   Use the 64-bit ANSI C compiler.
      CC = /usr/ccs64/bin/cc
      AR = /usr/ccs64/bin/ar
 
 3. ELF file format
    *** Caution: The following information is empirical. ***
 
- 32bit:
+ 32-bit:
    ELF file has an unique format. (See a.out(4) and end(3C).)
 
      &_start
@@ -57,7 +58,7 @@ GC on EWS4800
    &edata and DATASTART2. The global symbol &_DYNAMIC_LINKING is used
    for the detection.
 
- 64bit:
+ 64-bit:
    ELF file has a simple format. (See end(3C).)
 
      _ftext
diff --git a/misc.c b/misc.c
index c4f576d37a61a67ee795dea67ee47c04364fb3ac..a62b6aa3785950ab7da6fd83841a5fd30538a8c8 100644 (file)
--- a/misc.c
+++ b/misc.c
@@ -274,7 +274,7 @@ GC_INNER void GC_extend_size_map(size_t i)
         if (granule_sz < orig_granule_sz) granule_sz = orig_granule_sz;
     }
     /* For these larger sizes, we use an even number of granules.       */
-    /* This makes it easier to, for example, construct a 16byte-aligned */
+    /* This makes it easier to, e.g., construct a 16-byte-aligned       */
     /* allocator even if GRANULE_BYTES is 8.                            */
         granule_sz += 1;
         granule_sz &= ~1;