reflow with emacs fill-paragraph (fill-column 71)

This commit is contained in:
Zooko Wilcox-O'Hearn 2014-06-25 01:35:50 +00:00
parent d6ea8627ba
commit 668bad6d4c
1 changed files with 6 additions and 5 deletions

View File

@ -473,11 +473,12 @@ by an *action* (expression). Each case is separated by commas. It is
often convenient to use a block expression for each case, in which case
the commas are optional as shown below. Literals are valid patterns and
match only their own value. A single arm may match multiple different
patterns by combining them with the pipe operator (`|`), so long as every
pattern binds the same set of variables (see "destructuring" below). Ranges of numeric literal
patterns can be expressed with two dots, as in `M..N`. The underscore
(`_`) is a wildcard pattern that matches any single value. (`..`) is a
different wildcard that can match one or more fields in an `enum` variant.
patterns by combining them with the pipe operator (`|`), so long as
every pattern binds the same set of variables (see "destructuring"
below). Ranges of numeric literal patterns can be expressed with two
dots, as in `M..N`. The underscore (`_`) is a wildcard pattern that
matches any single value. (`..`) is a different wildcard that can match
one or more fields in an `enum` variant.
~~~
# let my_number = 1;