From df309071eea3aeae9c0e6f485fe3e38db3103cee Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Mon, 14 Nov 2016 12:47:33 -0500 Subject: [PATCH] Remove a sentence that didn't really say anything --- src/ch10-02-traits.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/ch10-02-traits.md b/src/ch10-02-traits.md index d83bd21..2cd98e4 100644 --- a/src/ch10-02-traits.md +++ b/src/ch10-02-traits.md @@ -1,9 +1,8 @@ ## Traits -Rust has a feature called *traits*. Traits are similar to a feature often -called 'interfaces' in other languages, but are also different. Traits let us -do another kind of abstraction: they let us abstract over *behavior* that types -can have in common. +*Traits* are similar to a feature often called 'interfaces' in other languages, +but are also different. Traits let us do another kind of abstraction: they let +us abstract over *behavior* that types can have in common. When we use a generic type parameter, we are telling Rust that any type is valid in that location. When other code *uses* a value that could be of any