summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorMs2ger <ms2ger@gmail.com>2015-03-25 18:02:11 +0100
committerMs2ger <ms2ger@gmail.com>2015-04-15 13:37:55 +0200
commit9a5a47eddc0df36d2d3321552eed7fbb8b05bb3e (patch)
treebfa1fc532f3978aa48b9029abf9279688fe5ce68 /src/test
parenta691f1eefea586f154700be6ee1b991158f82b7f (diff)
downloadrust-9a5a47eddc0df36d2d3321552eed7fbb8b05bb3e.tar.gz
rust-9a5a47eddc0df36d2d3321552eed7fbb8b05bb3e.zip
Fix some typos.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/run-pass/method-two-trait-defer-resolution-2.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/method-two-trait-defer-resolution-2.rs b/src/test/run-pass/method-two-trait-defer-resolution-2.rs
index e1b64f250d8..cf9bc9bb56a 100644
--- a/src/test/run-pass/method-two-trait-defer-resolution-2.rs
+++ b/src/test/run-pass/method-two-trait-defer-resolution-2.rs
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// Test that when we write `x.foo()`, we do nothave to know the
+// Test that when we write `x.foo()`, we do not have to know the
 // complete type of `x` in order to type-check the method call. In
 // this case, we know that `x: Vec<_1>`, but we don't know what type
 // `_1` is (because the call to `push` comes later). To pick between