Fix command section separator line lengths

This commit is contained in:
ridiculousfish
2019-01-02 20:10:47 -08:00
parent 0e936198db
commit c8dc306b18
85 changed files with 287 additions and 287 deletions

View File

@@ -1,5 +1,5 @@
else - execute command if a condition is not met
==========================================
================================================
Synopsis
--------
@@ -8,13 +8,13 @@ if CONDITION; COMMANDS_TRUE...; [else; COMMANDS_FALSE...;] end
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.
Example
------------
-------
The following code tests whether a file ``foo.txt`` exists as a regular file.