From 789c65c1b331d6f311ad56b22e2723644e70b9ad Mon Sep 17 00:00:00 2001 From: Alexandre Bury Date: Mon, 15 Aug 2016 18:40:51 -0700 Subject: [PATCH] Add missing `use` to tutorial --- doc/tutorial_1.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/tutorial_1.md b/doc/tutorial_1.md index af34850..ec808fa 100644 --- a/doc/tutorial_1.md +++ b/doc/tutorial_1.md @@ -116,6 +116,8 @@ In the end, we have: extern crate cursive; +use cursive::Cursive; + fn main() { let mut siv = Cursive::new();