mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
fix typos etc
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@39768 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
2c7357e42e
commit
2463bd5996
5 changed files with 13 additions and 6 deletions
|
@ -1,3 +1,11 @@
|
|||
2016-05-15 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Documentation/manual/manual.texi:
|
||||
* Source/GSSocksParser/GSSocks4Parser.m:
|
||||
* Source/GSSocksParser/GSSocks5Parser.m:
|
||||
* Tools/pldes.1:
|
||||
Trivial fixes based on debian package.
|
||||
|
||||
2016-05-14 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Headers/GNUstepBase/config.h.in:
|
||||
|
|
|
@ -66,7 +66,6 @@ into another language, under the above conditions for modified versions.
|
|||
@end ifnothtml
|
||||
|
||||
|
||||
@ifinfo
|
||||
@c **Top node and master menu
|
||||
@node Top
|
||||
@top Objective-C Programming Manual
|
||||
|
@ -90,7 +89,6 @@ into another language, under the above conditions for modified versions.
|
|||
* Make:: Using the Package to build GNUstep "Objects"
|
||||
@end menu
|
||||
@c **end Top node and master menu
|
||||
@end ifinfo
|
||||
|
||||
@page
|
||||
|
||||
|
|
|
@ -124,14 +124,15 @@ typedef enum GSSocks4ResponseStatus {
|
|||
description = @"identd is not running or not reachable from the server";
|
||||
break;
|
||||
case GSSocks4ResponseStatusUserNotConfirmed:
|
||||
description = @"identd could not confirm the user ID string in the request";
|
||||
description
|
||||
= @"identd could not confirm the user ID string in the request";
|
||||
break;
|
||||
default:
|
||||
description = @"unknown";
|
||||
break;
|
||||
}
|
||||
description = [NSString stringWithFormat:
|
||||
@"SOCKS4 connnection failed, reason: %@", description];
|
||||
@"SOCKS4 connection failed, reason: %@", description];
|
||||
return [self errorWithCode: aStatus description: description];
|
||||
}
|
||||
|
||||
|
|
|
@ -126,7 +126,7 @@ typedef enum GSSocks5ResponseStatus {
|
|||
description = @"address type is not supported";
|
||||
break;
|
||||
default:
|
||||
description = @"unkown";
|
||||
description = @"unknown";
|
||||
break;
|
||||
}
|
||||
description = [NSString stringWithFormat:
|
||||
|
|
|
@ -16,7 +16,7 @@ pl, pldes, plser, plmerge, plparse, pl2link \- property list tools
|
|||
.BI "pldes " "filename(s)"
|
||||
.nf
|
||||
.BI "plget " "key" [ more keys ]
|
||||
.nl
|
||||
.nf
|
||||
.BI "plser " "filename(s)"
|
||||
.nf
|
||||
.BI "plmerge [ " "destination-file" " ] [ " "input-file(s)" " ]"
|
||||
|
|
Loading…
Reference in a new issue