aboutsummaryrefslogtreecommitdiff
path: root/libobjc/hash.c
diff options
context:
space:
mode:
authorAndrew Kreimer <algonell@gmail.com>2024-09-20 11:40:32 +0300
committerAndrew Pinski <quic_apinski@quicinc.com>2024-09-23 20:55:07 +0000
commit0121b852c85db91babdb346f277ca6220eb7df86 (patch)
tree35bee548d04e57fc14b905146fa2c4bf8548b0fd /libobjc/hash.c
parent4700ad1c78ccd7767f846802fca148b2ea9a1852 (diff)
downloadgcc-0121b852c85db91babdb346f277ca6220eb7df86.zip
gcc-0121b852c85db91babdb346f277ca6220eb7df86.tar.gz
gcc-0121b852c85db91babdb346f277ca6220eb7df86.tar.bz2
libobjc: Fix typos
Fix typos in comments. libobjc/ChangeLog: * Makefile.in: s/overrridden/overridden. * encoding.c (_darwin_rs6000_special_round_type_align): Fix typo in comment. (rs6000_special_round_type_align): Likewise. * exception.c (is_kind_of_exception_matcher): Likewise. (PERSONALITY_FUNCTION): Likewise. * hash.c (objc_hash_next): Likewise. * init.c (__objc_create_classes_tree): Likewise. * objc-private/objc-list.h (list_remove_head): Likewise. * sendmsg.c (__objc_install_dtable_for_class): Likewise. * thr.c (objc_thread_yield): Likewise. Signed-off-by: Andrew Kreimer <algonell@gmail.com>
Diffstat (limited to 'libobjc/hash.c')
-rw-r--r--libobjc/hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libobjc/hash.c b/libobjc/hash.c
index e216c8c..e0ecf30 100644
--- a/libobjc/hash.c
+++ b/libobjc/hash.c
@@ -222,7 +222,7 @@ objc_hash_next (cache_ptr cache, node_ptr node)
if (node->next)
{
/* There is a node which follows the last node returned.
- Step to that node and retun it. */
+ Step to that node and return it. */
return node->next;
}
else