doc_src/printf: Add missing space

[ci skip]
This commit is contained in:
Fabian Homborg 2019-01-06 13:45:37 +01:00
parent e7bfd1d71c
commit adb97772c5

View File

@ -65,6 +65,6 @@ printf '%s\\t%s\\n' flounder fish
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.
\fish
printf '%s:%d' "Number of bananas in my pocket" 42
printf '%s: %d' "Number of bananas in my pocket" 42
\endfish
Will print "Number of bananas in my pocket: 42", _without_ a newline.