From 397ab315e76d59f634b79aa2c694571ad0c3e000 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Wed, 24 Feb 2016 19:13:31 +0300 Subject: [PATCH] reference: clarify use declaration location --- src/doc/reference.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/doc/reference.md b/src/doc/reference.md index 19c9b571a33c2..43cac796d27e6 100644 --- a/src/doc/reference.md +++ b/src/doc/reference.md @@ -841,8 +841,8 @@ extern crate std as ruststd; // linking to 'std' under another name A _use declaration_ creates one or more local name bindings synonymous with some other [path](#paths). Usually a `use` declaration is used to shorten the -path required to refer to a module item. These declarations may appear at the -top of [modules](#modules) and [blocks](grammar.html#block-expressions). +path required to refer to a module item. These declarations may appear in +[modules](#modules) and [blocks](grammar.html#block-expressions), usually at the top. > **Note**: Unlike in many languages, > `use` declarations in Rust do *not* declare linkage dependency with external crates.