Fix typo. NFC.
authorAlex Denisov <1101.debian@gmail.com>
Sat, 27 Jun 2015 19:04:55 +0000 (19:04 +0000)
committerAlex Denisov <1101.debian@gmail.com>
Sat, 27 Jun 2015 19:04:55 +0000 (19:04 +0000)
llvm-svn: 240888

clang/docs/ObjectiveCLiterals.rst

index 1b5868e..9fe7f66 100644 (file)
@@ -136,8 +136,8 @@ and some C structures (via NSValue) are supported:
     NSString *path = @(getenv("PATH"));       // [NSString stringWithUTF8String:(getenv("PATH"))]
     NSArray *pathComponents = [path componentsSeparatedByString:@":"];
 
-    // NS structs
-    NSValue *center = @(view.center);         // Point p = view.point;
+    // structs.
+    NSValue *center = @(view.center);         // Point p = view.center;
                                               // [NSValue valueWithBytes:&p objCType:@encode(Point)];
     NSValue *frame = @(view.frame);           // Rect r = view.frame;
                                               // [NSValue valueWithBytes:&r objCType:@encode(Rect)];