diff options
Diffstat (limited to 'gdb/mi')
-rw-r--r-- | gdb/mi/mi-cmd-disas.c | 2 | ||||
-rw-r--r-- | gdb/mi/mi-getopt.h | 2 | ||||
-rw-r--r-- | gdb/mi/mi-main.c | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/gdb/mi/mi-cmd-disas.c b/gdb/mi/mi-cmd-disas.c index 7d38b8c..2f919e0 100644 --- a/gdb/mi/mi-cmd-disas.c +++ b/gdb/mi/mi-cmd-disas.c @@ -36,7 +36,7 @@ FILENAME: The name of the file where we want disassemble from. LINE: The line around which we want to disassemble. It will - disassemble the function that contins that line. + disassemble the function that contains that line. HOW_MANY: Number of disassembly lines to display. With source, it is the number of disassembly lines only, not counting the source lines. diff --git a/gdb/mi/mi-getopt.h b/gdb/mi/mi-getopt.h index 1513bb5..92e1938 100644 --- a/gdb/mi/mi-getopt.h +++ b/gdb/mi/mi-getopt.h @@ -58,7 +58,7 @@ extern int mi_getopt_allow_unknown (const char *prefix, int argc, /* mi_valid_noargs determines if ARGC/ARGV are a valid set of parameters to satisfy an MI function that is not supposed to - recieve any arguments. + receive any arguments. An MI function that should not receive arguments can still be passed parameters after the special option '--' such as below. diff --git a/gdb/mi/mi-main.c b/gdb/mi/mi-main.c index 9a0b7f9..0e99fa3 100644 --- a/gdb/mi/mi-main.c +++ b/gdb/mi/mi-main.c @@ -1234,12 +1234,12 @@ mi_cmd_data_evaluate_expression (const char *command, char **argv, int argc) the ``x'' command. WORD-SIZE: size of each ``word''; 1,2,4, or 8 bytes. NR_ROW: Number of rows. - NR_COL: The number of colums (words per row). + NR_COL: The number of columns (words per row). ASCHAR: (OPTIONAL) Append an ascii character dump to each row. Use ASCHAR for unprintable characters. Reads SIZE*NR_ROW*NR_COL bytes starting at ADDR from memory and - displayes them. Returns: + displays them. Returns: {addr="...",rowN={wordN="..." ,... [,ascii="..."]}, ...} @@ -1359,7 +1359,7 @@ mi_cmd_data_read_memory (const char *command, char **argv, int argc) uiout->field_core_addr ("next-page", gdbarch, addr + total_bytes); uiout->field_core_addr ("prev-page", gdbarch, addr - total_bytes); - /* Build the result as a two dimentional table. */ + /* Build the result as a two dimensional table. */ { int row; int row_byte; |