From 88c407c74f319fc9bdae0af77fcdd77d4a69e275 Mon Sep 17 00:00:00 2001 From: Xmasreturns Date: Tue, 8 Dec 2015 14:56:42 -0800 Subject: [PATCH] Update traits.md --- src/doc/book/traits.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/book/traits.md b/src/doc/book/traits.md index d8e6043498f..f9e3299f9e7 100644 --- a/src/doc/book/traits.md +++ b/src/doc/book/traits.md @@ -23,7 +23,7 @@ impl Circle { [methodsyntax]: method-syntax.html Traits are similar, except that we first define a trait with a method -signature, then implement the trait for a struct. Like this: +signature, then implement the trait for a type. In this example, we implement the trait `HasArea` for `Circle`: ```rust struct Circle {