aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc_src/printf.txt
diff options
context:
space:
mode:
Diffstat (limited to 'doc_src/printf.txt')
-rw-r--r--doc_src/printf.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc_src/printf.txt b/doc_src/printf.txt
index ce7796c8..5e22db98 100644
--- a/doc_src/printf.txt
+++ b/doc_src/printf.txt
@@ -60,7 +60,7 @@ This file has been imported from the printf in GNU Coreutils version 6.9. If you
\subsection printf-example Example
\fish
-printf '\%s\\t\%s\n' flounder fish
+printf '%s\\t%s\\n' flounder fish
\endfish
Will print "flounder fish" (separated with a tab character), followed by a newline character. This is useful for writing completions, as fish expects completion scripts to output the option followed by the description, separated with a tab character.