diff options
| author | Tshepang Lekhonkhobe <tshepang@gmail.com> | 2015-08-03 16:07:36 +0200 |
|---|---|---|
| committer | Tshepang Lekhonkhobe <tshepang@gmail.com> | 2015-08-03 16:07:36 +0200 |
| commit | 8d331ba8c302bc76e0f16da8f84939c8c4238ae2 (patch) | |
| tree | 9b54083b56eaa145f70c6c339f6e5898c794f13d | |
| parent | ea5cc76aac7094abfe01657db8312c8450b15200 (diff) | |
| download | rust-8d331ba8c302bc76e0f16da8f84939c8c4238ae2.tar.gz rust-8d331ba8c302bc76e0f16da8f84939c8c4238ae2.zip | |
reference: follow idiom in this tiny snippet
| -rw-r--r-- | src/doc/reference.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md index 9528871a774..5988d62bd79 100644 --- a/src/doc/reference.md +++ b/src/doc/reference.md @@ -1199,8 +1199,8 @@ An example of an `enum` item and its use: ``` enum Animal { - Dog, - Cat + Dog, + Cat, } let mut a: Animal = Animal::Dog; |
