about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2016-02-14 03:59:09 +0530
committerManish Goregaokar <manishsmail@gmail.com>2016-02-14 05:06:32 +0530
commit42d17cc7cd4657f727403fd77cd1c0fb070383ca (patch)
tree2df802aea2d94115bd310daf305eddb181b963e2 /src
parent1c5c2f548e419191f499f78efdc49840dba6508e (diff)
parentcec158b6b7c488c93f16bbe07b6082d5e4f2f7b1 (diff)
downloadrust-42d17cc7cd4657f727403fd77cd1c0fb070383ca.tar.gz
rust-42d17cc7cd4657f727403fd77cd1c0fb070383ca.zip
Rollup merge of #31542 - nodakai:concat_idents-desc, r=steveklabnik
Just a small documentation change.

It would be great if anyone could check my English.
Diffstat (limited to 'src')
-rw-r--r--src/libstd/macros.rs9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/libstd/macros.rs b/src/libstd/macros.rs
index b7afd12d8e5..d241cd032ed 100644
--- a/src/libstd/macros.rs
+++ b/src/libstd/macros.rs
@@ -269,9 +269,10 @@ pub mod builtin {
     /// This macro takes any number of comma-separated identifiers, and
     /// concatenates them all into one, yielding an expression which is a new
     /// identifier. Note that hygiene makes it such that this macro cannot
-    /// capture local variables, and macros are only allowed in item,
-    /// statement or expression position, meaning this macro may be difficult to
-    /// use in some situations.
+    /// capture local variables. Also, as a general rule, macros are only
+    /// allowed in item, statement or expression position. That means while
+    /// you may use this macro for referring to existing variables, functions or
+    /// modules etc, you cannot define a new one with it.
     ///
     /// # Examples
     ///
@@ -283,6 +284,8 @@ pub mod builtin {
     ///
     /// let f = concat_idents!(foo, bar);
     /// println!("{}", f());
+    ///
+    /// // fn concat_idents!(new, fun, name) { } // not usable in this way!
     /// # }
     /// ```
     #[stable(feature = "rust1", since = "1.0.0")]