fix typos

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@28694 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2009-09-17 08:52:03 +00:00
parent 5a8fbf7417
commit 1c97fb7e67
6 changed files with 6 additions and 6 deletions

View file

@ -108,7 +108,7 @@ extern "C" {
* advisory; caches may choose to disregard it temporarily or permanently. A * advisory; caches may choose to disregard it temporarily or permanently. A
* limit of 0 is used to indicate no limit; this is the default. * limit of 0 is used to indicate no limit; this is the default.
*/ */
- (void) setCountLimit: (NSUInteger)lim;; - (void) setCountLimit: (NSUInteger)lim;
/** /**
* Sets the delegate for this cache. The delegate will be notified when an * Sets the delegate for this cache. The delegate will be notified when an

View file

@ -493,7 +493,7 @@ wordData(NSString *word)
*/ */
if ([self atEnd] == YES && pos > 0) if ([self atEnd] == YES && pos > 0)
{ {
unsigned len = pos - 1;; unsigned len = pos - 1;
while (pos < 4) while (pos < 4)
{ {

View file

@ -2773,7 +2773,7 @@ startElementFunction(void *ctx, const unsigned char *name,
dict = [NSMutableDictionary dictionary]; dict = [NSMutableDictionary dictionary];
if (atts != NULL) if (atts != NULL)
{ {
int i = 0;; int i = 0;
while (atts[i] != NULL) while (atts[i] != NULL)
{ {

View file

@ -1416,7 +1416,7 @@ NSDictionary *locale)
{ {
int temp = width; int temp = width;
width = prec; width = prec;
PAD ('0');; PAD ('0');
width = temp; width = temp;
} }

View file

@ -330,7 +330,7 @@ GSDecimalRound(GSDecimal *result, int scale, NSRoundingMode mode)
result->length++; result->length++;
} }
else else
result->exponent++;; result->exponent++;
} }
} }
} }

View file

@ -1634,7 +1634,7 @@ handle_printf_atsign (FILE *stream,
*/ */
- (NSString*) substringToIndex: (NSUInteger)index - (NSString*) substringToIndex: (NSUInteger)index
{ {
return [self substringWithRange: ((NSRange){0,index})];; return [self substringWithRange: ((NSRange){0,index})];
} }
/** /**