aboutsummaryrefslogtreecommitdiff
path: root/libobjc/init.c
diff options
context:
space:
mode:
authorOndřej Bílka <neleai@seznam.cz>2013-07-21 15:38:21 +0000
committerMike Stump <mrs@gcc.gnu.org>2013-07-21 15:38:21 +0000
commitcad10e055f078039ad10c2582d18a4441f4c9cad (patch)
tree2bfed6838fc6b4ca67f2f8653daa6500324f72fd /libobjc/init.c
parent587ae1e3bd7ead48424cdcb9b16d842fa828c6fd (diff)
downloadgcc-cad10e055f078039ad10c2582d18a4441f4c9cad.zip
gcc-cad10e055f078039ad10c2582d18a4441f4c9cad.tar.gz
gcc-cad10e055f078039ad10c2582d18a4441f4c9cad.tar.bz2
class.c: Fix typos.
2013-07-21 Ondřej Bílka <neleai@seznam.cz> * class.c: Fix typos. * encoding.c: Likewise. * init.c: Likewise. * objc-private/runtime.h: Likewise. * objc/runtime.h: Likewise. * objc-sync.c: Likewise. From-SVN: r201097
Diffstat (limited to 'libobjc/init.c')
-rw-r--r--libobjc/init.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libobjc/init.c b/libobjc/init.c
index 07497db..db9b036 100644
--- a/libobjc/init.c
+++ b/libobjc/init.c
@@ -338,7 +338,7 @@ objc_tree_insert_class (Class class)
}
/* If the list was finished but the class hasn't been inserted, we
- don't have an existing class hierarchy that can accomodate it.
+ don't have an existing class hierarchy that can accommodate it.
Create a new one. */
__objc_class_tree_list = list_cons (NULL, __objc_class_tree_list);
__objc_class_tree_list->head = __objc_tree_insert_class (NULL, class);
@@ -839,7 +839,7 @@ __objc_create_classes_tree (struct objc_module *module)
struct objc_symtab *symtab = module->symtab;
int i;
- /* Iterate thru classes defined in this module and insert them in
+ /* Iterate through classes defined in this module and insert them in
the classes tree hierarchy. */
for (i = 0; i < symtab->cls_def_cnt; i++)
{
@@ -878,7 +878,7 @@ __objc_call_load_callback (struct objc_module *module)
struct objc_symtab *symtab = module->symtab;
int i;
- /* Iterate thru classes defined in this module and call the callback
+ /* Iterate through classes defined in this module and call the callback
for each one. */
for (i = 0; i < symtab->cls_def_cnt; i++)
{