From 3f3e4fa1dac15e1b3b949379f820a3ac1ade9f38 Mon Sep 17 00:00:00 2001 From: ayers Date: Sun, 6 Jun 2004 12:14:00 +0000 Subject: [PATCH] (GSGetClassMethodNotInherited): Fix typo. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@19470 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 1 + Source/Additions/GSObjCRuntime.m | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index c7331f6c8..acef1e986 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ * Source/Additions/GSObjCRuntime.m (GSObjCMethodNames): Unify implementation for both runtimes. + (GSGetClassMethodNotInherited): Fix typo. 2004-06-05 David Ayers diff --git a/Source/Additions/GSObjCRuntime.m b/Source/Additions/GSObjCRuntime.m index 8d8d895cd..2a1cbf30e 100644 --- a/Source/Additions/GSObjCRuntime.m +++ b/Source/Additions/GSObjCRuntime.m @@ -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); }