summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYannick Loriot <yannick.loriot@gmail.com>2013-08-13 16:50:22 +0200
committerYannick Loriot <yannick.loriot@gmail.com>2013-08-13 16:50:22 +0200
commit664d592bc79c7dcc6c429bcee79965ef3df464f5 (patch)
treeb418cc209d78cf68e99657a8b3b36a1966f8bd8c
parent3fe1c3c8a562427533439f385df952a00b36a998 (diff)
minor change
-rw-r--r--objective-c.html.markdown5
1 files changed, 3 insertions, 2 deletions
diff --git a/objective-c.html.markdown b/objective-c.html.markdown
index 22791659..9d1178e1 100644
--- a/objective-c.html.markdown
+++ b/objective-c.html.markdown
@@ -20,6 +20,7 @@ Multi-line comments look like this.
// Imports the Foundation headers with #import
#import <Foundation/Foundation.h>
+#import "MyClass.h"
// Your program's entry point is a function called
// main with an integer return type.
@@ -212,7 +213,7 @@ int main (int argc, const char * argv[])
// Classes And Functions
///////////////////////////////////////
-// Declare your class in a header(.h) file:
+// Declare your class in a header(MyClass.h) file:
// Class Declaration Syntax:
// @interface <class name> : <parent classname>
// {
@@ -241,7 +242,7 @@ int main (int argc, const char * argv[])
-
@end
-// Implement the methods in an implementation (.m) file:
+// Implement the methods in an implementation (MyClass.m) file:
@implementation UserObject