aboutsummaryrefslogtreecommitdiff
path: root/gdbsupport
diff options
context:
space:
mode:
authorTom de Vries <tdevries@suse.de>2023-06-05 12:53:15 +0200
committerTom de Vries <tdevries@suse.de>2023-06-05 12:53:15 +0200
commit3bfdcabbc20d56ce25629b464262928a4f90c042 (patch)
tree46168190d7986e51b84abb4e1c7ab2a7c6b99200 /gdbsupport
parentfc998e4cb708899b5f75d8d4d2b79ed162437c41 (diff)
downloadgdb-3bfdcabbc20d56ce25629b464262928a4f90c042.zip
gdb-3bfdcabbc20d56ce25629b464262928a4f90c042.tar.gz
gdb-3bfdcabbc20d56ce25629b464262928a4f90c042.tar.bz2
[gdb] Fix more typos
Fix some more typos: - distinquish -> distinguish - actualy -> actually - singe -> single - frash -> frame - chid -> child - dissassembler -> disassembler - uninitalized -> uninitialized - precontidion -> precondition - regsiters -> registers - marge -> merge - sate -> state - garanteed -> guaranteed - explictly -> explicitly - prefices (nonstandard plural) -> prefixes - bondary -> boundary - formated -> formatted - ithe -> the - arrav -> array - coresponding -> corresponding - owend -> owned - fials -> fails - diasm -> disasm - ture -> true - tpye -> type There's one code change, the name of macro SIG_CODE_BONDARY_FAULT changed to SIG_CODE_BOUNDARY_FAULT. Tested on x86_64-linux.
Diffstat (limited to 'gdbsupport')
-rw-r--r--gdbsupport/array-view.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdbsupport/array-view.h b/gdbsupport/array-view.h
index d07c8bc..ee3a3c5 100644
--- a/gdbsupport/array-view.h
+++ b/gdbsupport/array-view.h
@@ -279,7 +279,7 @@ operator!= (const gdb::array_view<T> &lhs, const gdb::array_view<T> &rhs)
foo (1, 2, gdb::array_view<value *>(values, nargs));
Or, better, using make_array_view, which has the advantage of
- inferring the arrav_view element's type:
+ inferring the array_view element's type:
foo (1, 2, gdb::make_array_view (values, nargs));
*/