docs: Remove &foo; escapes

I always hated these.

[ci skip]
This commit is contained in:
Fabian Homborg
2019-04-06 23:33:07 +02:00
parent c4d0177d81
commit a447878cd7
2 changed files with 3 additions and 3 deletions

View File

@@ -135,7 +135,7 @@ You can pipe between commands with the usual vertical bar::
<outp> 1 2 12</outp>
stdin and stdout can be redirected via the familiar &lt; and &gt;. stderr is redirected with a 2&gt;.
stdin and stdout can be redirected via the familiar `<` and `<`. stderr is redirected with a `2>`.
@@ -408,7 +408,7 @@ To write them on the same line, use the semicolon (";"). That means the followin
Combiners (And, Or, Not)
------------------------
fish supports the familiar ``&amp;&amp;`` and ``||`` to combine commands, and ``!`` to negate them::
fish supports the familiar ``&&`` and ``||`` to combine commands, and ``!`` to negate them::
>_ ./configure && make && sudo make install