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 @@
alias - create a function
==========================================
=========================
Synopsis
--------
@@ -10,7 +10,7 @@ alias [OPTIONS] NAME=DEFINITION
Description
------------
-----------
``alias`` is a simple wrapper for the ``function`` builtin, which creates a function wrapping a command. It has similar syntax to POSIX shell ``alias``. For other uses, it is recommended to define a <a href='#function'>function</a>.
@@ -28,7 +28,7 @@ The following options are available:
- ``-s`` or ``--save`` Automatically save the function created by the alias into your fish configuration directory using <a href='#funcsave'>funcsave</a>.
Example
------------
-------
The following code will create ``rmi``, which runs ``rm`` with additional arguments on every invocation.