From: Andrew Burgess Date: Sun, 11 Aug 2024 14:40:54 +0000 (+0100) Subject: gdb/testsuite: fix argument order in example code within a comment X-Git-Tag: gdb-16-branchpoint~929 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dbddec2a8e0265b77fe331d9c173a4e99d1fccab;p=thirdparty%2Fbinutils-gdb.git 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. --- diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp index 6c4ffc1abaa..c993f48fd34 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