From eb0d04d7ff30b5a1b9e00ec2793f4098eeede608 Mon Sep 17 00:00:00 2001 From: Mark Griffiths Date: Sat, 16 Jul 2016 11:55:57 +0100 Subject: [PATCH] Fix imbalanced backticks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Only found one instance, which I’d already identified. --- doc_src/printf.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc_src/printf.txt b/doc_src/printf.txt index 5e22db986..49fb0ad6a 100644 --- a/doc_src/printf.txt +++ b/doc_src/printf.txt @@ -53,7 +53,7 @@ printf also knows a number of backslash escapes: - `\uhhhh` 16-bit Unicode character (hhhh is 4 digits) - `\Uhhhhhhhh` 32-bit Unicode character (hhhhhhhh is 8 digits) -The `format' argument is re-used as many times as necessary to convert all of the given arguments. If a format specifier is not appropriate for the given argument, an error is printed. For example, `printf '%d' "102.234"` produces an error, as "102.234" cannot be formatted as an integer. +The `format` argument is re-used as many times as necessary to convert all of the given arguments. If a format specifier is not appropriate for the given argument, an error is printed. For example, `printf '%d' "102.234"` produces an error, as "102.234" cannot be formatted as an integer. This file has been imported from the printf in GNU Coreutils version 6.9. If you would like to use a newer version of printf, for example the one shipped with your OS, try `command printf`.