From d33aa57f83d531bffe5ad3a8e73a140b380325e5 Mon Sep 17 00:00:00 2001 From: Chayoung You Date: Fri, 5 Jul 2019 15:26:30 +0900 Subject: [PATCH] Make `use` example runnable --- src/mod/use.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod/use.md b/src/mod/use.md index 5f99138726..44cef988cc 100644 --- a/src/mod/use.md +++ b/src/mod/use.md @@ -19,7 +19,7 @@ fn main() { You can use the `as` keyword to bind imports to a different name: -```rust,editable,ignore +```rust,editable // Bind the `deeply::nested::function` path to `other_function`. use deeply::nested::function as other_function;