From a1758aea18e9008e5b47a99706cab21ca12f1b0a Mon Sep 17 00:00:00 2001 From: Vladimir Rutsky Date: Wed, 9 Sep 2015 12:54:31 +0300 Subject: [PATCH] fix capitalization inside sentense --- src/doc/trpl/patterns.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/patterns.md b/src/doc/trpl/patterns.md index 26574f15c2c6..a365732fe9bd 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: