summaryrefslogtreecommitdiff
path: root/clformat
diff options
context:
space:
mode:
authorBenjamin J. Culkin <bjculkin@mix.wvu.edu>2019-04-22 19:46:52 -0300
committerBenjamin J. Culkin <bjculkin@mix.wvu.edu>2019-04-22 19:46:52 -0300
commit5a15fd15334d5e2a0e3a047c2dfff87bd3822a32 (patch)
treeba4ebef4f1bc068d8d101ca90ab659bad75462cf /clformat
parent9973b91bd59ce78c78759e217b015f4d1ba74f8f (diff)
More readme work
Diffstat (limited to 'clformat')
-rw-r--r--clformat/readme.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/clformat/readme.md b/clformat/readme.md
index bf9d4f7..2271af8 100644
--- a/clformat/readme.md
+++ b/clformat/readme.md
@@ -141,8 +141,8 @@ It takes zero, one or four parameters (described by the table below), as well as
| Sample String | Description |
|---------------|-------------|
| ~a | Print out the next format argument as a string. |
-| ~*mincol:[0]*a | Print out the next format argument, taking at least *mincol* columns |
-| ~*mincol:[0],colinc:[1],minpad:[0],padchar:[' ]*a | Print out the next format argument, adding at least *minpad* instances of *padchar*, then adding copies of *padchar* in *colinc* sized blocks until the total output size is at least *mincol* columns long. |
+| ~mincol:[0]a | Print out the next format argument, taking at least *mincol* columns |
+| ~mincol:[0],colinc:[1],minpad:[0],padchar:[' ]a | Print out the next format argument, adding at least *minpad* instances of *padchar*, then adding copies of *padchar* in *colinc* sized blocks until the total output size is at least *mincol* columns long. |
Padding will be inserted after the string, unless the `@` modifier has
been specified, in which case it will go before the string.