doc: perform some 80-chars wrappings

This commit is contained in:
Adrien Tétar 2014-04-27 11:56:29 +09:00
parent 5371146107
commit b7dba3300e
2 changed files with 14 additions and 10 deletions

View file

@ -471,7 +471,7 @@ Two examples of paths with type arguments:
# fn f() {
# fn id<T>(t: T) -> T { t }
type T = HashMap<int,~str>; // Type arguments used in a type expression
let x = id::<int>(10); // Type arguments used in a call expression
let x = id::<int>(10); // Type arguments used in a call expression
# }
~~~~