Update objective-c.html.markdown

Fixed a few typos
This commit is contained in:
Seva Baskin 2013-08-15 23:25:51 +01:00
parent 80f97751a2
commit 50ac50f05f

View File

@ -160,7 +160,7 @@ int main (int argc, const char * argv[])
int jj;
for (jj=0; jj < 4; jj++)
{
NSLog(@"%d,", ii++);
NSLog(@"%d,", jj++);
} // => prints "0,"
// "1,"
// "2,"
@ -256,7 +256,7 @@ int main (int argc, const char * argv[])
}
// Constructors are a way of creating classes
// This is a default constructor which is call when the object is creating
// This is a default constructor which is called when the object is creating
- (id)init
{
if ((self = [super init]))