aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc_src/else.txt
diff options
context:
space:
mode:
authorGravatar Mark Griffiths <mark@thebespokepixel.com>2014-08-19 13:41:23 +0100
committerGravatar Mark Griffiths <mark@thebespokepixel.com>2014-09-03 14:43:26 +0100
commit137abd0cfaa8959224f88a4ebe9584a51468cc88 (patch)
treec396f760a1e309b5a837359e65c57c4555534d49 /doc_src/else.txt
parentd7308fecbe573aad91fc6f1377c1ed2df735f6fd (diff)
Make line length, wrapping and spacing consistent
Diffstat (limited to 'doc_src/else.txt')
-rw-r--r--doc_src/else.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc_src/else.txt b/doc_src/else.txt
index a22cfcdb..76e0c61f 100644
--- a/doc_src/else.txt
+++ b/doc_src/else.txt
@@ -6,13 +6,13 @@ if CONDITION; COMMANDS_TRUE...; [else; COMMANDS_FALSE...;] end
\endfish
\subsection else-description Description
-`if` will execute the command `CONDITION`. If the condition's exit
-status is 0, the commands `COMMANDS_TRUE` will execute. If it is not 0 and
-`else` is given, `COMMANDS_FALSE` will be executed.
+
+`if` will execute the command `CONDITION`. If the condition's exit status is 0, the commands `COMMANDS_TRUE` will execute. If it is not 0 and `else` is given, `COMMANDS_FALSE` will be executed.
+
\subsection else-example Example
-The following code tests whether a file `foo`.txt exists as a regular file.
+The following code tests whether a file `foo.txt` exists as a regular file.
\fish
if test -f foo.txt