Index: src/OFProcess.m ================================================================== --- src/OFProcess.m +++ src/OFProcess.m @@ -26,10 +26,11 @@ #import "OFProcess.h" #import "OFString.h" #import "OFArray.h" #import "OFInitializationFailedException.h" +#import "OFNotImplementedException.h" #import "OFReadFailedException.h" #import "OFWriteFailedException.h" #ifdef _WIN32 # include @@ -302,11 +303,11 @@ @throw [OFNotImplementedException exceptionWithClass: [self class] selector: _cmd]; #endif } -- (int)fileDescriptorForWRiting +- (int)fileDescriptorForWriting { #ifndef _WIN32 return writePipe[1]; #else @throw [OFNotImplementedException exceptionWithClass: [self class] Index: src/runtime/property.m ================================================================== --- src/runtime/property.m +++ src/runtime/property.m @@ -106,14 +106,10 @@ switch (copy) { case 0: *ptr = [value retain]; break; case 2: - /* - * Apple uses this to indicate that the copy should be mutable. - * Please hit them for abusing a poor BOOL! - */ *ptr = [value mutableCopy]; break; default: *ptr = [value copy]; }