From ce8c5b0340050e1285f69689d0e16ece4bea8cf9 Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Sun, 6 Nov 2011 22:20:08 -0800 Subject: [PATCH] Tutorial: 'import std;' should be 'use std;'. --- doc/tutorial/syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tutorial/syntax.md b/doc/tutorial/syntax.md index d2c36bcb35e..d0bbf934f45 100644 --- a/doc/tutorial/syntax.md +++ b/doc/tutorial/syntax.md @@ -97,7 +97,7 @@ suppressed by using a variable name that starts with an underscore. The `let` keyword, as we've seen, introduces a local variable. Global constants can be defined with `const`: - import std; + use std; const repeat: uint = 5u; fn main() { let count = 0u;