From 019612a6b5f5ae3aa7893b75467f601f2ff89b43 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 d2c36bcb35e8b..d0bbf934f452d 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;