about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVladimir Rutsky <rutsky@users.noreply.github.com>2015-09-09 12:54:31 +0300
committerVladimir Rutsky <rutsky@users.noreply.github.com>2015-09-09 12:54:31 +0300
commita1758aea18e9008e5b47a99706cab21ca12f1b0a (patch)
tree25345ec4f36afcbb7267a5c750471abe5398215a
parent55da0e0000982f63932ad0683df2268fef193dab (diff)
downloadrust-a1758aea18e9008e5b47a99706cab21ca12f1b0a.tar.gz
rust-a1758aea18e9008e5b47a99706cab21ca12f1b0a.zip
fix capitalization inside sentense
-rw-r--r--src/doc/trpl/patterns.md2
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: