auto merge of #11933 : kini/rust/patch-1, r=alexcrichton

Text refers to "the type shown earlier", when the type in
question was not in fact shown earlier.  I assume this is
an artifact of an earlier revision.
This commit is contained in:
bors 2014-01-31 08:46:34 -08:00
commit bec01ad17c

View File

@ -646,7 +646,7 @@ match mypoint {
## Enums
Enums are datatypes that have several alternate representations. For
example, consider the type shown earlier:
example, consider the following type:
~~~~
# struct Point { x: f64, y: f64 }