Skip to content

Commit 633d4d2

Browse files
committed
Fix typo. NFC.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@240888 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent e58d2c6 commit 633d4d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/ObjectiveCLiterals.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,8 @@ and some C structures (via NSValue) are supported:
136136
NSString *path = @(getenv("PATH")); // [NSString stringWithUTF8String:(getenv("PATH"))]
137137
NSArray *pathComponents = [path componentsSeparatedByString:@":"];
138138
139-
// NS structs
140-
NSValue *center = @(view.center); // Point p = view.point;
139+
// structs.
140+
NSValue *center = @(view.center); // Point p = view.center;
141141
// [NSValue valueWithBytes:&p objCType:@encode(Point)];
142142
NSValue *frame = @(view.frame); // Rect r = view.frame;
143143
// [NSValue valueWithBytes:&r objCType:@encode(Rect)];

0 commit comments

Comments
 (0)