From c6c3f47f7c72ddf45ba1bf6bae6bec3699d7212e Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Wed, 6 Aug 2014 09:51:02 +0200 Subject: [PATCH] Guide: Fix imports (times_four instead of add_four) --- src/doc/guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/doc/guide.md b/src/doc/guide.md index 0236cc0533f..a64783b8b5e 100644 --- a/src/doc/guide.md +++ b/src/doc/guide.md @@ -3295,7 +3295,7 @@ fn times_four(x: int) -> int { x * 4 } #[cfg(test)] mod test { use super::add_three; - use super::add_four; + use super::times_four; #[test] fn test_add_three() { @@ -3344,7 +3344,7 @@ about yet, and that's these lines: ```{rust,ignore} use super::add_three; -use super::add_four; +use super::times_four; ``` Because we've made a nested module, we can import functions from the parent