diff --git a/gcc/ada/5qtaprop.adb b/gcc/ada/5qtaprop.adb index 52c09cff7ec..988f8ba9e09 100644 --- a/gcc/ada/5qtaprop.adb +++ b/gcc/ada/5qtaprop.adb @@ -945,7 +945,7 @@ package body System.Task_Primitives.Operations is -- Arrange to unlock Self_ID's ATCB lock. The following check -- may be unnecessary because the specification of Sleep says - -- the caller shoud hold its own ATCB lock before calling Sleep + -- the caller should hold its own ATCB lock before calling Sleep if Self_ID.Common.LL.L.Owner = To_Address (Self_ID) then Self_ID.Common.LL.L.Owner := System.Null_Address; diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index d49ba9dbf66..d893cff6645 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,8 @@ +2003-02-18 Ben Elliston + + PR other/7350 + * 5qtaprop.adb (Sleep): Fix typo in comment. + 2003-02-04 Joseph S. Myers * gnat_rm.texi, gnat_ug.texi: Update to GFDL 1.2. diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 623a127f139..c957c261dac 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2003-02-18 Ben Elliston + + PR other/7350 + * decl.c (duplicate_decls): Fix typo in comment. + 2003-02-17 Michael Elizabeth Chastain PR debug/9717 diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c index fc9051bce94..82ff6afeabd 100644 --- a/gcc/cp/decl.c +++ b/gcc/cp/decl.c @@ -3543,7 +3543,7 @@ duplicate_decls (tree newdecl, tree olddecl) { /* If newdecl is not a specialization, then it is not a template-related function at all. And that means that we - shoud have exited above, returning 0. */ + should have exited above, returning 0. */ my_friendly_assert (DECL_TEMPLATE_SPECIALIZATION (newdecl), 0);