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 @@
begin - start a new block of code
==========================================
=================================
Synopsis
--------
@@ -8,7 +8,7 @@ begin; [COMMANDS...;] end
Description
------------
-----------
``begin`` is used to create a new block of code.
@@ -20,7 +20,7 @@ The block is unconditionally executed. ``begin; ...; end`` is equivalent to ``if
Example
------------
-------
The following code sets a number of variables inside of a block scope. Since the variables are set inside the block and have local scope, they will be automatically deleted when the block ends.