@@ -261,15 +261,15 @@ + (OFString*)description; /** * Replaces a class method implementation with another implementation. * - * \param newimp The new implementation for the class method + * \param newImp The new implementation for the class method * \param selector The selector of the class method to replace * \return The old implementation */ -+ (IMP)setImplementation: (IMP)newimp ++ (IMP)setImplementation: (IMP)newImp forClassMethod: (SEL)selector; /** * Replaces a class method with a class method from another class. * @@ -281,15 +281,15 @@ withMethodFromClass: (Class)class_; /** * Replaces an instance method implementation with another implementation. * - * \param newimp The new implementation for the instance method + * \param newImp The new implementation for the instance method * \param selector The selector of the instance method to replace * \return The old implementation */ -+ (IMP)setImplementation: (IMP)newimp ++ (IMP)setImplementation: (IMP)newImp forInstanceMethod: (SEL)selector; /** * Replaces an instance method with an instance method from another class. * @@ -365,15 +365,15 @@ /** * Allocates memory for the specified number of items and stores it in the * object's memory pool so it can be free'd automatically when the object is * deallocated. * - * \param nitems The number of items to allocate + * \param nItems The number of items to allocate * \param size The size of each item to allocate * \return A pointer to the allocated memory */ -- (void*)allocMemoryForNItems: (size_t)nitems +- (void*)allocMemoryForNItems: (size_t)nItems withSize: (size_t)size; /** * Resizes memory in the object's memory pool to the specified size. * @@ -387,16 +387,16 @@ /** * Resizes memory in the object's memory pool to the specific number of items of * the specified size. * * \param ptr A pointer to the already allocated memory - * \param nitems The number of items to resize to + * \param nItems The number of items to resize to * \param size The size of each item to resize to * \return A pointer to the resized memory chunk */ - (void*)resizeMemory: (void*)ptr - toNItems: (size_t)nitems + toNItems: (size_t)nItems withSize: (size_t)size; /** * Frees allocated memory and removes it from the object's memory pool. * Does nothing if ptr is NULL.