(GSGetClassMethodNotInherited): Fix typo.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@19470 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
ayers 2004-06-06 12:14:00 +00:00
parent 113c981b63
commit 3f3e4fa1da
2 changed files with 2 additions and 1 deletions

View file

@ -2,6 +2,7 @@
* Source/Additions/GSObjCRuntime.m
(GSObjCMethodNames): Unify implementation for both runtimes.
(GSGetClassMethodNotInherited): Fix typo.
2004-06-05 David Ayers <d.ayers@inode.at>

View file

@ -792,7 +792,7 @@ GSGetInstanceMethodNotInherited (Class class, SEL sel)
/* See header for documentation. */
GSMethod
GSGetClassMethodNotInhertited (Class class, SEL sel)
GSGetClassMethodNotInherited (Class class, SEL sel)
{
return search_for_method_in_class (class->class_pointer, sel);
}