diff options
author | Doug Evans <dje@google.com> | 2013-02-05 21:31:31 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2013-02-05 21:31:31 +0000 |
commit | 59be2b6abccdc479931e79c0a64b9d2733289ec4 (patch) | |
tree | 405003e42a270d3c9e1c027821d54eec8cf8eaef /gdb/completer.c | |
parent | 5a2dc60a6abad96f4d6cead42146df9a0d635b08 (diff) | |
download | gdb-59be2b6abccdc479931e79c0a64b9d2733289ec4.zip gdb-59be2b6abccdc479931e79c0a64b9d2733289ec4.tar.gz gdb-59be2b6abccdc479931e79c0a64b9d2733289ec4.tar.bz2 |
* completer.c (location_completer): Fix typo in comment.
Diffstat (limited to 'gdb/completer.c')
-rw-r--r-- | gdb/completer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/completer.c b/gdb/completer.c index 969d015..3b14fc9 100644 --- a/gdb/completer.c +++ b/gdb/completer.c @@ -199,7 +199,7 @@ location_completer (struct cmd_list_element *ignore, char *orig_text = text; size_t text_len; - /* Do we have an unquoted colon, as in "break foo.c::bar"? */ + /* Do we have an unquoted colon, as in "break foo.c:bar"? */ for (p = text; *p != '\0'; ++p) { if (*p == '\\' && p[1] == '\'') |