about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexei Sholik <alcosholik@gmail.com>2013-06-06 02:59:34 +0300
committerAlexei Sholik <alcosholik@gmail.com>2013-06-06 10:43:58 +0300
commitc7b19b04cbde053f0cf7a15b989bc6546cd2e265 (patch)
tree20c6966e78114f0120184c16272bc66058f380e8
parent7e62ad6876550e9a7de7f5e6039707f4a8e15f9b (diff)
downloadrust-c7b19b04cbde053f0cf7a15b989bc6546cd2e265.tar.gz
rust-c7b19b04cbde053f0cf7a15b989bc6546cd2e265.zip
Fix duplicate words in the docs
-rw-r--r--doc/rust.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/rust.md b/doc/rust.md
index 787d0191b09..592bdcf3a3d 100644
--- a/doc/rust.md
+++ b/doc/rust.md
@@ -1297,7 +1297,7 @@ with matching types and type parameter counts.
 
 An implementation can take type parameters,
 which can be different from the type parameters taken by the trait it implements.
-Implementation parameters are written after after the `impl` keyword.
+Implementation parameters are written after the `impl` keyword.
 
 ~~~~
 # trait Seq<T> { }