]> git.lizzy.rs Git - rust.git/commitdiff
Auto merge of #27495 - tshepang:patch-6, r=Gankro
authorbors <bors@rust-lang.org>
Mon, 3 Aug 2015 16:51:28 +0000 (16:51 +0000)
committerbors <bors@rust-lang.org>
Mon, 3 Aug 2015 16:51:28 +0000 (16:51 +0000)
src/doc/reference.md

index 9528871a77491ecd43027b47f7f0d9a9f3dc727e..5988d62bd798391879e74aaf771b8f7584a2d8bc 100644 (file)
@@ -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;