Fix typo in the "alias" example
authorTom Tromey <tom@tromey.com>
Tue, 1 Mar 2022 23:50:39 +0000 (16:50 -0700)
committerTom Tromey <tom@tromey.com>
Tue, 1 Mar 2022 23:50:39 +0000 (16:50 -0700)
PR cli/17332, filed around 8 years ago, points out a typo in the docs
-- in one example, the command and its output are obviously out of
sync.  This patch fixes it.  I'm checking this in as obvious.

Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=17332

gdb/doc/gdb.texinfo

index f7f5f7a6158ebee297107fd452924f1e598f1514..a80b61e622dd43a5ecfdf90dc52f5f7eee6414ba 100644 (file)
@@ -28037,7 +28037,7 @@ of a command.
 @smallexample
 (gdb) alias -a set print elms = set print elements
 (gdb) alias -a show print elms = show print elements
-(gdb) set p elms 20
+(gdb) set p elms 200
 (gdb) show p elms
 Limit on string chars or array elements to print is 200.
 @end smallexample