summaryrefslogtreecommitdiffstats
path: root/src/doc
diff options
context:
space:
mode:
authorAndrés <andmarti@gmail.com>2021-03-21 20:42:18 -0300
committerAndrés <andmarti@gmail.com>2021-03-21 20:42:18 -0300
commitf250d7c57c1ed85049dfa4e63f0d89db91ece1e4 (patch)
tree469191b2fbb7b9bb2f8039d5a1f3d40cd055db20 /src/doc
parenta133fcbb40353ce9cdf719f6ed4fd4c310ec3b6a (diff)
fix * in @fmt
Diffstat (limited to 'src/doc')
-rwxr-xr-xsrc/doc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc b/src/doc
index d784593..8ef06a8 100755
--- a/src/doc
+++ b/src/doc
@@ -1549,8 +1549,8 @@ Commands for handling cell content:
Convert a number to a string. The argument se must be a valid
printf(3) format string. e is converted according to the standard
rules. For example, the expression
- @fmt("∗∗%6.3f∗∗", 10.5)
- yields the string ``∗∗10.500∗∗''. e is a double, so applicable
+ @fmt("**%6.3f**", 10.5)
+ yields the string ``**10.500**''. e is a double, so applicable
formats are e, E, f, g, and G. Try ``%g'' as a starting point.
==============================================================================