diff options
author | Andrew Burgess <aburgess@redhat.com> | 2024-08-11 15:40:54 +0100 |
---|---|---|
committer | Andrew Burgess <aburgess@redhat.com> | 2024-09-10 15:15:05 +0100 |
commit | dbddec2a8e0265b77fe331d9c173a4e99d1fccab (patch) | |
tree | 644eb3966edd74612c77b1d54de62c8f172e605d /gdb/testsuite/lib | |
parent | a80935397a191dcf87ab19a0bae5c74c87a263e9 (diff) | |
download | binutils-dbddec2a8e0265b77fe331d9c173a4e99d1fccab.zip binutils-dbddec2a8e0265b77fe331d9c173a4e99d1fccab.tar.gz binutils-dbddec2a8e0265b77fe331d9c173a4e99d1fccab.tar.bz2 |
gdb/testsuite: fix argument order in example code within a comment
Small typo in some example code inside a comment; the arguments were
in the wrong order.
There's no functional change after this commit.
Diffstat (limited to 'gdb/testsuite/lib')
-rw-r--r-- | gdb/testsuite/lib/gdb.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp index 6c4ffc1..c993f48 100644 --- a/gdb/testsuite/lib/gdb.exp +++ b/gdb/testsuite/lib/gdb.exp @@ -9290,7 +9290,7 @@ proc using_fission { } { # # Example: # proc myproc {foo args} { -# parse_list args 1 {{bar} {baz "abc"} {qux}} "-" false +# parse_list 1 args {{bar} {baz "abc"} {qux}} "-" false # # ... # } # myproc ABC -bar -baz DEF peanut butter |