Skip to content
Snippets Groups Projects
Commit 21065ec5 authored by Alex Denisov's avatar Alex Denisov
Browse files

Fix typo. NFC.

llvm-svn: 240888
parent b2fa8add
No related branches found
No related tags found
No related merge requests found
......@@ -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)];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment