Match prose with code when discussing Ordering values

Now both the enum values and the prose describing them mention the values in the same order.
This commit is contained in:
Adam Roben 2015-01-12 16:18:02 -05:00
parent 055cc2ee74
commit 1c0acb9d91

View File

@ -253,7 +253,7 @@ things from the standard library if you need them.
Okay, let's talk about the actual code in the example. `cmp` is a function that
compares two things, and returns an `Ordering`. We return either
`Ordering::Less`, `Ordering::Greater`, or `Ordering::Equal`, depending on if
the two values are greater, less, or equal. Note that each variant of the
the two values are less, greater, or equal. Note that each variant of the
`enum` is namespaced under the `enum` itself: it's `Ordering::Greater` not
`Greater`.