In libobjc/: 2011-08-06 Nicola Pero <nicola.pero@meta-innovation.com>
authorNicola Pero <nicola.pero@meta-innovation.com>
Sat, 6 Aug 2011 09:53:43 +0000 (09:53 +0000)
committerNicola Pero <nicola@gcc.gnu.org>
Sat, 6 Aug 2011 09:53:43 +0000 (09:53 +0000)
In libobjc/:
2011-08-06  Nicola Pero  <nicola.pero@meta-innovation.com>

* class.c (class_getSuperclass): Fixed typo in comment.

From-SVN: r177506

libobjc/ChangeLog
libobjc/class.c

index 978878e2701cb1253d81e903ebfb15952e692de1..a69e59032cc955049912197eb8627cb78b5ecef6 100644 (file)
@@ -1,3 +1,7 @@
+2011-08-06  Nicola Pero  <nicola.pero@meta-innovation.com>
+
+       * class.c (class_getSuperclass): Fixed typo in comment.
+       
 2011-08-06  Nicola Pero  <nicola.pero@meta-innovation.com>
 
        PR libobjc/49882
index 5df7050869192aa68ed9f91a7eb3fe063bc6de5c..fa21afc461d7803d2a3c9de5f7edf45682046b28 100644 (file)
@@ -925,7 +925,7 @@ class_getSuperclass (Class class_)
 
   /* Classes that are in construction are not resolved, and still have
      the class name (instead of a class pointer) in the
-     class_->superclass field.  In that case we need to lookup the
+     class_->super_class field.  In that case we need to lookup the
      superclass name to return the superclass.  We can not resolve the
      class until it is registered.  */
   if (CLS_IS_IN_CONSTRUCTION (class_))