Update src/uu/printf/printf.md

Co-authored-by: Sylvestre Ledru <sledru@mozilla.com>
This commit is contained in:
Masahito Osako 2023-04-06 00:25:28 +09:00 committed by GitHub
parent cbc0ff6771
commit 5633eb9cd7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -133,7 +133,7 @@ printf 'the letter %X comes before the letter %X' 10 11
will print will print
'the letter A comes before the letter B' 'the letter A comes before the letter B'
because the substitution field %X means because the substitution field `%X` means
'take an integer argument and write it as a hexadecimal number' 'take an integer argument and write it as a hexadecimal number'
Passing more arguments than are in the format string will cause the format string to be Passing more arguments than are in the format string will cause the format string to be