diff options
-rw-r--r-- | docs/ObjectiveCLiterals.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ObjectiveCLiterals.html b/docs/ObjectiveCLiterals.html index 11751a6acd..d5a8a9eca0 100644 --- a/docs/ObjectiveCLiterals.html +++ b/docs/ObjectiveCLiterals.html @@ -178,7 +178,7 @@ A C string literal prefixed by the <code>'@'</code> token denotes an <code>NSStr <pre> // Partition command line arguments into positional and option arguments. NSMutableArray *args = [NSMutableArray new]; -NSMutableDictionary *options = [NSMutableArray new]; +NSMutableDictionary *options = [NSMutableDictionary new]; while (--argc) { const char *arg = *++argv; if (strncmp(arg, "--", 2) == 0) { |