about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-11-29 17:31:32 +0000
committerbors <bors@rust-lang.org>2014-11-29 17:31:32 +0000
commit6163581451a089a8d07bed4dba058677ee4a21f3 (patch)
tree17a26cafa63b84f360b876741600be5102cd83d6
parent29e928f2ba3501d37660314f6186d0e2ac18b9db (diff)
parentd9a3ea88fc28f13c395a27e29b2e1ff70328d3cf (diff)
auto merge of #19401 : MatejLach/rust/guide_are_fix, r=steveklabnik
Fixes a small omission of `are` in the sentence:
`There also a few things you can do with a tuple as a whole, without...`
r @steveklabnik?
-rw-r--r--src/doc/guide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/guide.md b/src/doc/guide.md
index 670af614b95..c2d43a20ec4 100644
--- a/src/doc/guide.md
+++ b/src/doc/guide.md
@@ -922,7 +922,7 @@ or 'breaks up,' the tuple, and assigns the bits to three bindings.
 
 This pattern is very powerful, and we'll see it repeated more later.
 
-There also a few things you can do with a tuple as a whole, without
+There are also a few things you can do with a tuple as a whole, without
 destructuring. You can assign one tuple into another, if they have the same
 arity and contained types.