aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ada/ChangeLog4
-rw-r--r--gcc/ada/sem_util.ads2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog
index 078a238..9a422d8 100644
--- a/gcc/ada/ChangeLog
+++ b/gcc/ada/ChangeLog
@@ -1,5 +1,9 @@
2019-12-16 Bob Duff <duff@adacore.com>
+ * sem_util.ads: Minor comment fix.
+
+2019-12-16 Bob Duff <duff@adacore.com>
+
* errout.ads, errout.adb (Is_Size_Too_Small_Message): Check for
"size for" instead of "size for& too small, minimum allowed is
^".
diff --git a/gcc/ada/sem_util.ads b/gcc/ada/sem_util.ads
index 2882917..351d992 100644
--- a/gcc/ada/sem_util.ads
+++ b/gcc/ada/sem_util.ads
@@ -2686,7 +2686,7 @@ package Sem_Util is
function Scope_Within_Or_Same
(Inner : Entity_Id;
Outer : Entity_Id) return Boolean;
- -- Determine whether scope Inner appears within scope Outer or both renote
+ -- Determine whether scope Inner appears within scope Outer or both denote
-- the same scope. Note that scopes are partially ordered, so Scope_Within
-- (A, B) and Scope_Within (B, A) may both return False.