doc: correct two examples

* doc/sed.texi (Escaping Precedence): Expected output is "xbc", not
"Xbc" in each of two examples.
This commit is contained in:
Hans Ginzel 2025-07-09 13:36:36 +02:00 committed by Jim Meyering
parent 4e3b320704
commit f1d0d1fd1d

View File

@ -3378,9 +3378,9 @@ As are the following (@samp{0x5b},@samp{0x5d} are the hexadecimal
@example
@group
$ echo abc | sed 's/[a]/x/'
Xbc
xbc
$ echo abc | sed 's/\x5ba\x5d/x/'
Xbc
xbc
@end group
@end example
@codequoteundirected off