diff options
Diffstat (limited to 'gcc/objc')
-rw-r--r-- | gcc/objc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/objc/objc-map.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/objc/ChangeLog b/gcc/objc/ChangeLog index 824877b97da..62590fb5f39 100644 --- a/gcc/objc/ChangeLog +++ b/gcc/objc/ChangeLog @@ -1,3 +1,7 @@ +2015-07-12 Aldy Hernandez <aldyh@redhat.com> + + * objc-map.h: Fix double word typos. + 2015-07-07 Andrew MacLeod <amacleod@redhat.com> * objc-act.c: Adjust includes. diff --git a/gcc/objc/objc-map.h b/gcc/objc/objc-map.h index 88c97c46a38..76972a546ab 100644 --- a/gcc/objc/objc-map.h +++ b/gcc/objc/objc-map.h @@ -73,7 +73,7 @@ struct GTY(()) objc_map_private { /* These are the keys. */ tree * GTY ((length ("%h.number_of_slots"))) slots; - /* These are the values. values[i] is the the value corresponding + /* These are the values. values[i] is the value corresponding to slots[i]. */ tree * GTY ((length ("%h.number_of_slots"))) values; }; |