aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/a-crdlli.ads
diff options
context:
space:
mode:
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>2008-04-14 21:07:59 +0000
committerRalf Wildenhues <rwild@gcc.gnu.org>2008-04-14 21:07:59 +0000
commitf3d0f304ff5dc9bd1836b1a1329038558ea572be (patch)
tree3f86f334592314b53781112a469770f9d9d72b3e /gcc/ada/a-crdlli.ads
parent682db6f9c015c7c4abf53493ac87b25b6ea95046 (diff)
downloadgcc-f3d0f304ff5dc9bd1836b1a1329038558ea572be.zip
gcc-f3d0f304ff5dc9bd1836b1a1329038558ea572be.tar.gz
gcc-f3d0f304ff5dc9bd1836b1a1329038558ea572be.tar.bz2
vms_data.ads: Fix typo in constant.
gcc/ada/ * vms_data.ads: Fix typo in constant. * gen-soccon.c: Fix typo in error string. * gnat_rm.texi (Pragma Optimize_Alignment, Pragma Postcondition): Fix typos. * a-calcon.ads, a-calend-vms.adb, a-calend.adb, a-crdlli.ads, bcheck.adb, checks.adb, einfo.ads, errout.adb, erroutc.adb, erroutc.ads, exp_attr.adb, exp_ch11.adb, exp_ch2.adb, exp_ch5.adb, exp_ch9.adb, exp_ch9.ads, exp_pakd.adb, exp_util.adb, fmap.adb, g-soccon-linux-mips.ads, g-soccon-rtems.ads, g-timsta.adb, g-timsta.ads, lib-writ.ads, mlib-tgt-specific-linux.adb, mlib-tgt-specific-tru64.adb, s-interr-vxworks.adb, s-interr.adb, s-osinte-lynxos.ads, s-rident.ads, s-taprop-solaris.adb, s-tassta.adb, s-win32.ads, sem_aggr.adb, sem_attr.ads, sem_ch10.adb, sem_ch13.ads, sem_ch3.adb, sem_ch6.adb, sem_ch7.adb, sem_ch8.adb, sem_ch9.adb, sem_prag.ads, sem_res.adb, sem_util.adb, sem_util.ads, sinfo.ads: Fix typos in comments. From-SVN: r134291
Diffstat (limited to 'gcc/ada/a-crdlli.ads')
-rw-r--r--gcc/ada/a-crdlli.ads4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/a-crdlli.ads b/gcc/ada/a-crdlli.ads
index a97f354..ca78cb5 100644
--- a/gcc/ada/a-crdlli.ads
+++ b/gcc/ada/a-crdlli.ads
@@ -253,7 +253,7 @@ package Ada.Containers.Restricted_Doubly_Linked_Lists is
Position : Cursor := No_Element) return Cursor;
-- Searches for the node whose element is equal to Item, starting from
-- Position and continuing to the last end of the list. If Position equals
- -- No_Element, the seach starts from the first node. If Position is
+ -- No_Element, the search starts from the first node. If Position is
-- associated with a list object different from Container, then
-- Program_Error is raised. If no node is found having an element equal to
-- Item, then Find returns No_Element.
@@ -264,7 +264,7 @@ package Ada.Containers.Restricted_Doubly_Linked_Lists is
Position : Cursor := No_Element) return Cursor;
-- Searches in reverse for the node whose element is equal to Item,
-- starting from Position and continuing to the first end of the list. If
- -- Position equals No_Element, the seach starts from the last node. If
+ -- Position equals No_Element, the search starts from the last node. If
-- Position is associated with a list object different from Container, then
-- Program_Error is raised. If no node is found having an element equal to
-- Item, then Reverse_Find returns No_Element.