mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
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:
parent
6455c3e533
commit
447a3d1c69
6 changed files with 6 additions and 6 deletions
|
@ -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
|
||||
|
|
|
@ -493,7 +493,7 @@ wordData(NSString *word)
|
|||
*/
|
||||
if ([self atEnd] == YES && pos > 0)
|
||||
{
|
||||
unsigned len = pos - 1;;
|
||||
unsigned len = pos - 1;
|
||||
|
||||
while (pos < 4)
|
||||
{
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -1416,7 +1416,7 @@ NSDictionary *locale)
|
|||
{
|
||||
int temp = width;
|
||||
width = prec;
|
||||
PAD ('0');;
|
||||
PAD ('0');
|
||||
width = temp;
|
||||
}
|
||||
|
||||
|
|
|
@ -330,7 +330,7 @@ GSDecimalRound(GSDecimal *result, int scale, NSRoundingMode mode)
|
|||
result->length++;
|
||||
}
|
||||
else
|
||||
result->exponent++;;
|
||||
result->exponent++;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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})];
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue