We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e58d2c6 commit 633d4d2Copy full SHA for 633d4d2
docs/ObjectiveCLiterals.rst
@@ -136,8 +136,8 @@ and some C structures (via NSValue) are supported:
136
NSString *path = @(getenv("PATH")); // [NSString stringWithUTF8String:(getenv("PATH"))]
137
NSArray *pathComponents = [path componentsSeparatedByString:@":"];
138
139
- // NS structs
140
- NSValue *center = @(view.center); // Point p = view.point;
+ // structs.
+ NSValue *center = @(view.center); // Point p = view.center;
141
// [NSValue valueWithBytes:&p objCType:@encode(Point)];
142
NSValue *frame = @(view.frame); // Rect r = view.frame;
143
// [NSValue valueWithBytes:&r objCType:@encode(Rect)];
0 commit comments