diff options
author | Adam Bard <github@adambard.com> | 2015-08-12 06:38:17 +0900 |
---|---|---|
committer | Adam Bard <github@adambard.com> | 2015-08-12 06:38:17 +0900 |
commit | 27b9ee85fb65c9192a070890375e678a7d02f9e6 (patch) | |
tree | 88bf2fbed4b097ffa0a43227698539c55a7848a9 /objective-c.html.markdown | |
parent | c2cb83afc5c84f68bcac88ad7bb527bb347898d0 (diff) |
Fixes #1196
Diffstat (limited to 'objective-c.html.markdown')
-rw-r--r-- | objective-c.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/objective-c.html.markdown b/objective-c.html.markdown index 56640a87..91b84b47 100644 --- a/objective-c.html.markdown +++ b/objective-c.html.markdown @@ -415,7 +415,7 @@ distance = 18; // References "long distance" from MyClass implementation + (NSString *)classMethod { - return [[self alloc] init]; + return @"Some string"; } + (MyClass *)myClassFromHeight:(NSNumber *)defaultHeight |