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:
Richard Frith-MacDonald 2009-09-17 08:52:03 +00:00
parent 6455c3e533
commit 447a3d1c69
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
* 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

View file

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

View file

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

View file

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

View file

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

View file

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