about summary refs log tree commit diff
diff options
context:
space:
mode:
authortav <tav@espians.com>2012-10-09 01:24:54 +0100
committertav <tav@espians.com>2012-10-09 01:30:46 +0100
commit4c968f47e0df71d78c4c02f1e8fa008be70661c7 (patch)
tree9c2c18ec4fdd3abb02382f76f4b6b2ddad5a6a46
parent6ced454b96d95bee5b4925bb522ba629bd9cd715 (diff)
downloadrust-4c968f47e0df71d78c4c02f1e8fa008be70661c7.tar.gz
rust-4c968f47e0df71d78c4c02f1e8fa008be70661c7.zip
doc: Remove duplicate word typo in the tutorial.
-rw-r--r--doc/tutorial.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tutorial.md b/doc/tutorial.md
index 36b118a21a3..d49fcf92cab 100644
--- a/doc/tutorial.md
+++ b/doc/tutorial.md
@@ -965,7 +965,7 @@ s.draw();
 ~~~
 
 This defines an _implementation_ for `Shape` containing a single
-method, `draw`. In most most respects the `draw` method is defined
+method, `draw`. In most respects the `draw` method is defined
 like any other function, with the exception of the name `self`. `self`
 is a special value that is automatically defined in each method,
 referring to the value being operated on. If we wanted we could add