From 1c5f068886b1a0fbaee563b31593b970961b2e9a Mon Sep 17 00:00:00 2001 From: m11o Date: Thu, 6 Apr 2023 00:50:02 +0900 Subject: [PATCH] use ` for keyword --- src/uu/printf/printf.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/uu/printf/printf.md b/src/uu/printf/printf.md index e64321ede..60b50354c 100644 --- a/src/uu/printf/printf.md +++ b/src/uu/printf/printf.md @@ -117,9 +117,9 @@ defaults can be found in the full substitution help below special prefixes to numeric arguments -* `0 (e.g. 010)`: interpret argument as octal (integer output fields only) -* `0x (e.g. 0xABC)`: interpret argument as hex (numeric output fields only) -* `\' (e.g. \'a)`: interpret argument as a character constant +* `0`: (e.g. 010) interpret argument as octal (integer output fields only) +* `0x`: (e.g. 0xABC) interpret argument as hex (numeric output fields only) +* `\'`: (e.g. \'a) interpret argument as a character constant #### HOW TO USE SUBSTITUTIONS