mirror of
https://github.com/rust-lang-cn/book-cn.git
synced 2025-02-02 23:38:41 +08:00
Make the verb tense consistent
This commit is contained in:
parent
8059a9301d
commit
8f62f51e74
@ -84,8 +84,8 @@ return the `None` value that is on the right side of the `=>`. We don't
|
||||
check any other arms since we found one that matched.
|
||||
|
||||
Combining `match` and enums together is extremely powerful. You'll see this
|
||||
pattern a lot in Rust code: `match` against an enum, binding to the data
|
||||
inside, and then executing code based on it. It's a bit tricky at first, but
|
||||
pattern a lot in Rust code: `match` against an enum, bind to the data
|
||||
inside, and then execute code based on it. It's a bit tricky at first, but
|
||||
once you get used to it, you'll wish you had it in languages that don't support
|
||||
it. It's consistently a user favorite.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user