diff --git a/Headers/GNUstepBase/GSObjCRuntime.h b/Headers/GNUstepBase/GSObjCRuntime.h index 9db4dacce..7386b93de 100644 --- a/Headers/GNUstepBase/GSObjCRuntime.h +++ b/Headers/GNUstepBase/GSObjCRuntime.h @@ -395,7 +395,7 @@ typedef Ivar GSIVar; * either the specified class only or also its superclasses.
* To obtain the implementation pointer IMP use returnValue->method_imp * which should be safe across all runtimes.
- * It should be safe to use this function in +load implementations.
+ * It should be safe to use this function in "+load" implementations.
* This function should currently (June 2004) be considered WIP. * Please follow potential changes (Name, parameters, ...) closely until * it stabilizes. diff --git a/Source/NSCountedSet.m b/Source/NSCountedSet.m index ae5ac9642..231cc21ba 100644 --- a/Source/NSCountedSet.m +++ b/Source/NSCountedSet.m @@ -98,7 +98,7 @@ static Class NSCountedSet_concrete_class; /** * Returns the number of times that an object that is equal to the - * specified object (as determined by the [-isEqual:] method) has + * specified object (as determined by the [NSObject-isEqual:] method) has * been added to the set and not removed from it. */ - (NSUInteger) countForObject: (id)anObject diff --git a/Source/NSDictionary.m b/Source/NSDictionary.m index be18517ce..b80617aa0 100644 --- a/Source/NSDictionary.m +++ b/Source/NSDictionary.m @@ -1217,7 +1217,7 @@ compareIt(id o1, id o2, void* context) * according to the locale, and indented according to level.
* Unless locale is nil, a level of zero indents items by four spaces, * while a level of one indents them by a tab.
- * If the keys in the dictionary respond to [NSObject-compare:], the items are + * If the keys in the dictionary respond to [NSString-compare:], the items are * listed by key in ascending order. If not, the order in which the * items are listed is undefined. */