aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc_src
diff options
context:
space:
mode:
authorGravatar Kurtis Rader <krader@skepticism.us>2016-04-04 21:32:03 -0700
committerGravatar Kurtis Rader <krader@skepticism.us>2016-04-04 21:32:03 -0700
commit3435e94994268caba16e67780bb71381332334b7 (patch)
tree5a5e92f738d30ec546ed3a47554af68e5faea826 /doc_src
parentfd1b7ba52901179c19f5997b650518993d919f52 (diff)
make the string man page more readable
I didn't notice when I merged commit cb6d5d76c8232264f66c9a1db895d9dd69d77bc3 by thebespokepixel.com that it removed the explicit wrapping in the `string` man page. That makes `man string` harder to read so reinstate the explicit wrapping.
Diffstat (limited to 'doc_src')
-rw-r--r--doc_src/string.txt15
1 files changed, 10 insertions, 5 deletions
diff --git a/doc_src/string.txt b/doc_src/string.txt
index fd77da94..1a3f2ea1 100644
--- a/doc_src/string.txt
+++ b/doc_src/string.txt
@@ -3,13 +3,18 @@
\subsection string-synopsis Synopsis
\fish{synopsis}
string length [(-q | --quiet)] [STRING...]
-string sub [(-s | --start) START] [(-l | --length) LENGTH] [(-q | --quiet)] [STRING...]
-string split [(-m | --max) MAX] [(-r | --right)] [(-q | --quiet)] SEP [STRING...]
+string sub [(-s | --start) START] [(-l | --length) LENGTH] [(-q | --quiet)]
+ [STRING...]
+string split [(-m | --max) MAX] [(-r | --right)] [(-q | --quiet)] SEP
+ [STRING...]
string join [(-q | --quiet)] SEP [STRING...]
-string trim [(-l | --left)] [(-r | --right)] [(-c | --chars CHARS)] [(-q | --quiet)] [STRING...]
+string trim [(-l | --left)] [(-r | --right)] [(-c | --chars CHARS)]
+ [(-q | --quiet)] [STRING...]
string escape [(-n | --no-quoted)] [STRING...]
-string match [(-a | --all)] [(-i | --ignore-case)] [(-r | --regex)] [(-n | --index)] [(-q | --quiet)] PATTERN [STRING...]
-string replace [(-a | --all)] [(-i | --ignore-case)] [(-r | --regex)] [(-q | --quiet)] PATTERN REPLACEMENT [STRING...]
+string match [(-a | --all)] [(-i | --ignore-case)] [(-r | --regex)]
+ [(-n | --index)] [(-q | --quiet)] PATTERN [STRING...]
+string replace [(-a | --all)] [(-i | --ignore-case)] [(-r | --regex)]
+ [(-q | --quiet)] PATTERN REPLACEMENT [STRING...]
\endfish