Author: rfm
Date: Wed May 18 08:11:00 2016
New Revision: 39774

URL: http://svn.gna.org/viewcvs/gnustep?rev=39774&view=rev
Log:
fix spelling errors / typos (patch by [email protected])

Modified:
    libs/base/trunk/ChangeLog.2
    libs/base/trunk/Documentation/news.texi
    libs/base/trunk/Headers/Foundation/NSAutoreleasePool.h
    libs/base/trunk/NEWS
    libs/base/trunk/Source/GSSocksParser/GSSocksParser.m
    libs/base/trunk/Source/NSAutoreleasePool.m
    libs/base/trunk/Source/NSConnection.m
    libs/base/trunk/Source/NSKeyedUnarchiver.m
    libs/base/trunk/Tools/AGSParser.m

Modified: libs/base/trunk/ChangeLog.2
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/base/trunk/ChangeLog.2?rev=39774&r1=39773&r2=39774&view=diff
==============================================================================
--- libs/base/trunk/ChangeLog.2 (original)
+++ libs/base/trunk/ChangeLog.2 Wed May 18 08:11:00 2016
@@ -6301,7 +6301,7 @@
        * Source/Unicode.m: GSFromUnicode(), GSToUnicode(), bugfix - ensure
        that returned memory is allocated from specified zone, rather than
        returning internal buffer.
-       * Tools/AGSIndex.m: When a string missmatch is found when merging,
+       * Tools/AGSIndex.m: When a string mismatch is found when merging,
        update the output to the new string as well as warning.
        * Tools/autogsdoc.m: Don't automatically include refs to installed
        copies of the project being documented.

Modified: libs/base/trunk/Documentation/news.texi
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/base/trunk/Documentation/news.texi?rev=39774&r1=39773&r2=39774&view=diff
==============================================================================
--- libs/base/trunk/Documentation/news.texi     (original)
+++ libs/base/trunk/Documentation/news.texi     Wed May 18 08:11:00 2016
@@ -1106,7 +1106,7 @@
 
 @end itemize
 
-@section Noteworthy changes in verion @samp{940524}
+@section Noteworthy changes in version @samp{940524}
 
 @itemize @bullet
 

Modified: libs/base/trunk/Headers/Foundation/NSAutoreleasePool.h
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/base/trunk/Headers/Foundation/NSAutoreleasePool.h?rev=39774&r1=39773&r2=39774&view=diff
==============================================================================
--- libs/base/trunk/Headers/Foundation/NSAutoreleasePool.h      (original)
+++ libs/base/trunk/Headers/Foundation/NSAutoreleasePool.h      Wed May 18 
08:11:00 2016
@@ -307,7 +307,7 @@
  *   Default value is maxint.
  * </p>
  */
-+ (void) setPoolCountThreshhold: (unsigned)c;
++ (void) setPoolCountThreshold: (unsigned)c;
 
 /**
  * Return the number of objects in this pool.

Modified: libs/base/trunk/NEWS
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/base/trunk/NEWS?rev=39774&r1=39773&r2=39774&view=diff
==============================================================================
--- libs/base/trunk/NEWS        (original)
+++ libs/base/trunk/NEWS        Wed May 18 08:11:00 2016
@@ -994,8 +994,8 @@
      in List and HashTable.  New files zone.[hc] containing dummy stubs
      for NeXT-compatible zone functions.
 
-1.77 Noteworthy changes in verion '940524'
-==========================================
+1.77 Noteworthy changes in version '940524'
+===========================================
 
    * A NeXT-compatible NXStringTable object, thanks to Adam Fedor
      <[email protected]>.

Modified: libs/base/trunk/Source/GSSocksParser/GSSocksParser.m
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/base/trunk/Source/GSSocksParser/GSSocksParser.m?rev=39774&r1=39773&r2=39774&view=diff
==============================================================================
--- libs/base/trunk/Source/GSSocksParser/GSSocksParser.m        (original)
+++ libs/base/trunk/Source/GSSocksParser/GSSocksParser.m        Wed May 18 
08:11:00 2016
@@ -71,7 +71,7 @@
   else
     {
       [NSException raise: NSInternalInconsistencyException
-                  format: @"Unsupported socks verion: %@", version];
+                  format: @"Unsupported socks version: %@", version];
       return nil;       // Avoid spurious compiler warning
     }
   return [[concreteClass alloc] initWithConfiguration: aConfiguration

Modified: libs/base/trunk/Source/NSAutoreleasePool.m
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/base/trunk/Source/NSAutoreleasePool.m?rev=39774&r1=39773&r2=39774&view=diff
==============================================================================
--- libs/base/trunk/Source/NSAutoreleasePool.m  (original)
+++ libs/base/trunk/Source/NSAutoreleasePool.m  Wed May 18 08:11:00 2016
@@ -51,12 +51,12 @@
 static BOOL autorelease_enabled = YES;
 
 /* When the _released_count of a pool gets over this value, we raise
-   an exception.  This can be adjusted with +setPoolCountThreshhold */
-static unsigned pool_count_warning_threshhold = UINT_MAX-1;
+   an exception.  This can be adjusted with +setPoolCountThreshold */
+static unsigned pool_count_warning_threshold = UINT_MAX-1;
 
 /* When the number of pools in a thread gets over this value, we raise
-   an exception.  This can be adjusted with +setPoolNumberThreshhold */
-static unsigned pool_number_warning_threshhold = 10000;
+   an exception.  This can be adjusted with +setPoolNumberThreshold */
+static unsigned pool_number_warning_threshold = 10000;
 
 /* The size of the first _released array. */
 #define BEGINNING_POOL_SIZE 32
@@ -198,7 +198,7 @@
         _parent->_child = self;
       }
     tv->current_pool = self;
-    if (level > pool_number_warning_threshhold)
+    if (level > pool_number_warning_threshold)
       {
        [NSException raise: NSGenericException
          format: @"Too many (%u) autorelease pools ... leaking them?", level];
@@ -297,7 +297,7 @@
         _parent->_child = self;
       }
     tv->current_pool = self;
-    if (level > pool_number_warning_threshhold)
+    if (level > pool_number_warning_threshold)
       {
        [NSException raise: NSGenericException
          format: @"Too many (%u) autorelease pools ... leaking them?", level];
@@ -389,10 +389,10 @@
   if (!autorelease_enabled)
     return;
 
-  if (_released_count >= pool_count_warning_threshhold)
+  if (_released_count >= pool_count_warning_threshold)
     {
       [NSException raise: NSGenericException
-                 format: @"AutoreleasePool count threshhold exceeded."];
+                 format: @"AutoreleasePool count threshold exceeded."];
     }
 
   /* Get a new array for the list, if the current one is full. */
@@ -662,15 +662,15 @@
   free_pool_cache(ARP_THREAD_VARS);
 }
 
-+ (void) setPoolCountThreshhold: (unsigned)c
++ (void) setPoolCountThreshold: (unsigned)c
 {
   if (c >= UINT_MAX) c = UINT_MAX - 1;
-  pool_count_warning_threshhold = c;
-}
-
-+ (void) setPoolNumberThreshhold: (unsigned)c
-{
-  pool_number_warning_threshhold = c;
+  pool_count_warning_threshold = c;
+}
+
++ (void) setPoolNumberThreshold: (unsigned)c
+{
+  pool_number_warning_threshold = c;
 }
 
 @end

Modified: libs/base/trunk/Source/NSConnection.m
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/base/trunk/Source/NSConnection.m?rev=39774&r1=39773&r2=39774&view=diff
==============================================================================
--- libs/base/trunk/Source/NSConnection.m       (original)
+++ libs/base/trunk/Source/NSConnection.m       Wed May 18 08:11:00 2016
@@ -2578,7 +2578,7 @@
       if (GSSelectorTypesMatch(encoded_types, type) == NO)
        {
          [NSException raise: NSInvalidArgumentException
-           format: @"NSConection types (%s / %s) missmatch for %s",
+           format: @"NSConection types (%s / %s) mismatch for %s",
            encoded_types, type, sel_getName(selector)];
        }
 

Modified: libs/base/trunk/Source/NSKeyedUnarchiver.m
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/base/trunk/Source/NSKeyedUnarchiver.m?rev=39774&r1=39773&r2=39774&view=diff
==============================================================================
--- libs/base/trunk/Source/NSKeyedUnarchiver.m  (original)
+++ libs/base/trunk/Source/NSKeyedUnarchiver.m  Wed May 18 08:11:00 2016
@@ -414,13 +414,13 @@
   if (strcmp([o type], type) != 0)
     {
       [NSException raise: NSInvalidUnarchiveOperationException
-                 format: @"[%@ +%@]: type missmatch for %@",
+                 format: @"[%@ +%@]: type mismatch for %@",
        NSStringFromClass([self class]), NSStringFromSelector(_cmd), o];
     }
   if ([o count] != expected)
     {
       [NSException raise: NSInvalidUnarchiveOperationException
-                 format: @"[%@ +%@]: count missmatch for %@",
+                 format: @"[%@ +%@]: count mismatch for %@",
        NSStringFromClass([self class]), NSStringFromSelector(_cmd), o];
     }
   NSGetSizeAndAlignment(type, 0, &size);

Modified: libs/base/trunk/Tools/AGSParser.m
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/base/trunk/Tools/AGSParser.m?rev=39774&r1=39773&r2=39774&view=diff
==============================================================================
--- libs/base/trunk/Tools/AGSParser.m   (original)
+++ libs/base/trunk/Tools/AGSParser.m   Wed May 18 08:11:00 2016
@@ -2106,7 +2106,7 @@
 
                            if ([a1 isEqual: a2] == NO)
                              {
-                               [self log: @"Function %@ args missmatch - "
+                               [self log: @"Function %@ args mismatch - "
                                  @"%@ %@", name, a1, a2];
                              }
                            /*


_______________________________________________
Gnustep-cvs mailing list
[email protected]
https://mail.gna.org/listinfo/gnustep-cvs

Reply via email to