This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
[pushed/obv/Ada] fix typos in ada-lang.c comment
- From: Joel Brobecker <brobecker at adacore dot com>
- To: gdb-patches at sourceware dot org
- Date: Thu, 9 Nov 2017 12:03:54 -0800
- Subject: [pushed/obv/Ada] fix typos in ada-lang.c comment
- Authentication-results: sourceware.org; auth=none
Hello,
A colleague of mine noticed some typos in one of the large comments
in ada-lang.c, so this patch fixes them.
gdb/ChangeLog:
* ada-lang.c: Fix some typos in the general command documenting
how Ada expressions are being evaluated and how their result
is printed.
Tested by rebuilding GDB on x86_64-linux.
Thank you,
--
Joel
---
gdb/ChangeLog | 6 ++++++
gdb/ada-lang.c | 4 ++--
2 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 22434aa343..59324f3b76 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,9 @@
+2017-11-09 Joel Brobecker <brobecker@adacore.com>
+
+ * ada-lang.c: Fix some typos in the general command documenting
+ how Ada expressions are being evaluated and how their result
+ is printed.
+
2017-11-09 Tom Tromey <tom@tromey.com>
* psymtab.c (psymbol_hash): Do not hash string contents.
diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c
index 749473355c..ca5cdd1fb9 100644
--- a/gdb/ada-lang.c
+++ b/gdb/ada-lang.c
@@ -10303,14 +10303,14 @@ ada_value_cast (struct type *type, struct value *arg2, enum noside noside)
one element out of that array. On the other hand, fixing should
not be performed on the elements when taking a slice of an array!
- Note that one of the side-effects of miscomputing the offset and
+ Note that one of the side effects of miscomputing the offset and
size of each field is that we end up also miscomputing the size
of the containing type. This can have adverse results when computing
the value of an entity. GDB fetches the value of an entity based
on the size of its type, and thus a wrong size causes GDB to fetch
the wrong amount of memory. In the case where the computed size is
too small, GDB fetches too little data to print the value of our
- entiry. Results in this case as unpredicatble, as we usually read
+ entity. Results in this case are unpredictable, as we usually read
past the buffer containing the data =:-o. */
/* Implement the evaluate_exp routine in the exp_descriptor structure
--
2.11.0