Fix an incorrect word and line wrapping

This commit is contained in:
Carol (Nichols || Goulding) 2016-12-11 11:57:08 -05:00
parent d5aa0440f7
commit b6ac0b9300

View File

@ -36,7 +36,8 @@ We declare a trait with the `trait` keyword, then the trait's name. In this
case, our trait will describe types which can be printed. Inside of curly
braces, we declare a method signature, but instead of providing an
implementation inside curly braces, we put a semicolon after the signature. A
trait can have multiple methods in its body, with the method signatures listened one per line and each line ending in a semicolon.
trait can have multiple methods in its body, with the method signatures listed
one per line and each line ending in a semicolon.
Implementing a trait for a particular type looks similar to implementing
methods on a type since it's also done with the `impl` keyword, but we specify