about summary refs log tree commit diff
path: root/src/doc/rust.md
diff options
context:
space:
mode:
authorAdrien Tétar <adri-from-59@hotmail.fr>2014-04-27 11:56:29 +0900
committerAdrien Tétar <adri-from-59@hotmail.fr>2014-04-27 11:56:29 +0900
commitb7dba3300e48e87e321dcfcc8db09dd3e69e48ba (patch)
tree60c3de4af260f73e9dd762977949896d6648e314 /src/doc/rust.md
parent53711461070ec8ad0d71c4bcdb35de3120e07ec5 (diff)
downloadrust-b7dba3300e48e87e321dcfcc8db09dd3e69e48ba.tar.gz
rust-b7dba3300e48e87e321dcfcc8db09dd3e69e48ba.zip
doc: perform some 80-chars wrappings
Diffstat (limited to 'src/doc/rust.md')
-rw-r--r--src/doc/rust.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rust.md b/src/doc/rust.md
index aeda95aa261..d5fd3d15ba5 100644
--- a/src/doc/rust.md
+++ b/src/doc/rust.md
@@ -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
 # }
 ~~~~