about summary refs log tree commit diff
path: root/doc/tutorial.md
diff options
context:
space:
mode:
authorLindsey Kuper <lindsey@composition.al>2014-01-04 22:40:59 -0500
committerLindsey Kuper <lindsey@composition.al>2014-01-05 22:03:13 -0500
commit4f1ebef96a499129d935a3488b3a207c16b8975a (patch)
tree8c598030bc445c219f5e43800a77c6e15b4649f7 /doc/tutorial.md
parent60e139409f6e0b033f0def55dd7f872e57f23d86 (diff)
downloadrust-4f1ebef96a499129d935a3488b3a207c16b8975a.tar.gz
rust-4f1ebef96a499129d935a3488b3a207c16b8975a.zip
tutorial: remove duplicate words.
Diffstat (limited to 'doc/tutorial.md')
-rw-r--r--doc/tutorial.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/tutorial.md b/doc/tutorial.md
index 80f8c3a53eb..65e7501a04c 100644
--- a/doc/tutorial.md
+++ b/doc/tutorial.md
@@ -2156,8 +2156,8 @@ Rust's built-in `Send` and `Freeze` types are examples of traits that
 don't provide any methods.
 
 Traits may be implemented for specific types with [impls]. An impl for
-a particular trait gives an implementation of the methods that that
-trait provides.  For instance, the following the following impls of
+a particular trait gives an implementation of the methods that
+trait provides.  For instance, the following impls of
 `Printable` for `int` and `~str` give implementations of the `print`
 method.
 
@@ -3093,7 +3093,7 @@ they model most closely what people expect to shadow.
 
 ## Package ids
 
-If you use `extern mod`, per default `rustc` will look for libraries in the the library search path (which you can
+If you use `extern mod`, per default `rustc` will look for libraries in the library search path (which you can
 extend with the `-L` switch).
 
 However, Rust also ships with rustpkg, a package manager that is able to automatically download and build