diff options
author | Tom de Vries <tdevries@suse.de> | 2023-06-05 12:53:15 +0200 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2023-06-05 12:53:15 +0200 |
commit | 3bfdcabbc20d56ce25629b464262928a4f90c042 (patch) | |
tree | 46168190d7986e51b84abb4e1c7ab2a7c6b99200 /gdb/tui | |
parent | fc998e4cb708899b5f75d8d4d2b79ed162437c41 (diff) | |
download | gdb-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 'gdb/tui')
-rw-r--r-- | gdb/tui/tui-io.c | 2 | ||||
-rw-r--r-- | gdb/tui/tui-winsource.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gdb/tui/tui-io.c b/gdb/tui/tui-io.c index a1eadcd..908cb83 100644 --- a/gdb/tui/tui-io.c +++ b/gdb/tui/tui-io.c @@ -1191,7 +1191,7 @@ tui_getc_1 (FILE *fp) #endif } - /* Keycodes above KEY_MAX are not garanteed to be stable. + /* Keycodes above KEY_MAX are not guaranteed to be stable. Compare keyname instead. */ if (ch >= KEY_MAX) { diff --git a/gdb/tui/tui-winsource.h b/gdb/tui/tui-winsource.h index a8ff94f..4a35512 100644 --- a/gdb/tui/tui-winsource.h +++ b/gdb/tui/tui-winsource.h @@ -316,7 +316,7 @@ private: struct tui_source_windows { - /* Work around Wmaybe-uninitalized warning with g++ 11.0.0, see also + /* Work around Wmaybe-uninitialized warning with g++ 11.0.0, see also PR gcc/96295. Note that "tui_source_windows () = default" doesn't work around the warning. */ tui_source_windows () {} |