diff options
| author | bors <bors@rust-lang.org> | 2015-09-09 16:44:43 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-09-09 16:44:43 +0000 |
| commit | 5d9dc1d7a1d2ee601673bf17003852255c577144 (patch) | |
| tree | 322b8b443d7534030b7b456360c76a848fb7e59b | |
| parent | 3a4fb823e26c512d14d97bd86e2ac7b1e7d3d0fa (diff) | |
| parent | a1758aea18e9008e5b47a99706cab21ca12f1b0a (diff) | |
| download | rust-5d9dc1d7a1d2ee601673bf17003852255c577144.tar.gz rust-5d9dc1d7a1d2ee601673bf17003852255c577144.zip | |
Auto merge of #28313 - rutsky:patch-4, r=alexcrichton
Follow-up fix for PR #28283.
| -rw-r--r-- | src/doc/trpl/patterns.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/patterns.md b/src/doc/trpl/patterns.md index 26574f15c2c..a365732fe9b 100644 --- a/src/doc/trpl/patterns.md +++ b/src/doc/trpl/patterns.md @@ -251,7 +251,7 @@ match x { } ``` -This prints `Some("Steve")`: We’ve bound the inner `name` to `a`. +This prints `Some("Steve")`: we’ve bound the inner `name` to `a`. If you use `@` with `|`, you need to make sure the name is bound in each part of the pattern: |
