about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlex Burka <durka42+github@gmail.com>2015-05-14 14:51:16 -0400
committerAlex Burka <durka42+github@gmail.com>2015-05-14 14:51:16 -0400
commitc8b06891f0633f3cb53ba4e557e0154601c585d1 (patch)
treeedeac74fadc7ccb08049a3e7e5dedc53710da5f6 /src
parente2bb734ac1457f85c2db821b4e9dbb885059d337 (diff)
downloadrust-c8b06891f0633f3cb53ba4e557e0154601c585d1.tar.gz
rust-c8b06891f0633f3cb53ba4e557e0154601c585d1.zip
trpl: punctuation fix in Patterns
Diffstat (limited to 'src')
-rw-r--r--src/doc/trpl/patterns.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/trpl/patterns.md b/src/doc/trpl/patterns.md
index 266c1cafdee..93df0f19e8e 100644
--- a/src/doc/trpl/patterns.md
+++ b/src/doc/trpl/patterns.md
@@ -66,7 +66,7 @@ match x {
 }
 ```
 
-This prints `something else`
+This prints `something else`.
 
 # Bindings
 
@@ -152,7 +152,7 @@ match x {
 }
 ```
 
-This prints `Got an int!`
+This prints `Got an int!`.
 
 # ref and ref mut