aboutsummaryrefslogtreecommitdiff
path: root/gcc/objc/class.c
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1995-05-16 08:39:54 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1995-05-16 08:39:54 -0400
commit9faa82d8c081b9e38370b5a913825111d2166de6 (patch)
tree1e50640eecb618d0b3fa87607094528acb0add62 /gcc/objc/class.c
parentddd5a7c1808995545ad5befaa7320135e60b5d38 (diff)
downloadgcc-9faa82d8c081b9e38370b5a913825111d2166de6.zip
gcc-9faa82d8c081b9e38370b5a913825111d2166de6.tar.gz
gcc-9faa82d8c081b9e38370b5a913825111d2166de6.tar.bz2
Fix typos in comments.
From-SVN: r9712
Diffstat (limited to 'gcc/objc/class.c')
-rw-r--r--gcc/objc/class.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/objc/class.c b/gcc/objc/class.c
index 0e7d49b..aeb228f 100644
--- a/gcc/objc/class.c
+++ b/gcc/objc/class.c
@@ -275,9 +275,9 @@ class_pose_as (Class impostor, Class super_class)
impostor->subclass_list = sub;
/* It will happen that SUB is not a class object if it is
- the top of the meta class hierachy chain. (root
- meta-class objects inherit theit class object) If that is
- the case... dont mess with the meta-meta class. */
+ the top of the meta class hierarchy chain. (root
+ meta-class objects inherit their class object) If that is
+ the case... don't mess with the meta-meta class. */
if (CLS_ISCLASS (sub))
{
/* meta classes */
@@ -305,7 +305,7 @@ class_pose_as (Class impostor, Class super_class)
/* This is how to update the lookup table. Regardless of
what the keys of the hashtable is, change all values that are
- suprecalss into impostor. */
+ superclass into impostor. */
for (node = hash_next (__objc_class_hash, NULL); node;
node = hash_next (__objc_class_hash, node))