diff options
| -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  | 
