mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 00:30:53 +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
5a8fbf7417
commit
1c97fb7e67
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
|
* 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
|
||||||
|
|
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
|
@ -1416,7 +1416,7 @@ NSDictionary *locale)
|
||||||
{
|
{
|
||||||
int temp = width;
|
int temp = width;
|
||||||
width = prec;
|
width = prec;
|
||||||
PAD ('0');;
|
PAD ('0');
|
||||||
width = temp;
|
width = temp;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -330,7 +330,7 @@ GSDecimalRound(GSDecimal *result, int scale, NSRoundingMode mode)
|
||||||
result->length++;
|
result->length++;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
result->exponent++;;
|
result->exponent++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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})];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue