Author: jrose
Date: Wed Sep  5 21:19:13 2012
New Revision: 163286

URL: http://llvm.org/viewvc/llvm-project?rev=163286&view=rev
Log:
Fix a mistake in an HTML example code snippet.

Caught by Kurt Arnlund!

Modified:
    cfe/trunk/docs/ObjectiveCLiterals.html

Modified: cfe/trunk/docs/ObjectiveCLiterals.html
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/ObjectiveCLiterals.html?rev=163286&r1=163285&r2=163286&view=diff
==============================================================================
--- cfe/trunk/docs/ObjectiveCLiterals.html (original)
+++ cfe/trunk/docs/ObjectiveCLiterals.html Wed Sep  5 21:19:13 2012
@@ -178,7 +178,7 @@
 <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) {


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to