@@ -31,11 +31,11 @@ return [[[self alloc] initWithString: string] autorelease]; } - initWithString: (OFString *)string { - self = [super OF_init]; + self = [super of_init]; @try { _comment = [string copy]; } @catch (id e) { [self release]; @@ -45,11 +45,11 @@ return self; } - initWithSerialization: (OFXMLElement *)element { - self = [super OF_init]; + self = [super of_init]; @try { void *pool = objc_autoreleasePoolPush(); if (![[element name] isEqual: [self className]] ||