diff options
| author | Артём Павлов [Artyom Pavlov] <newpavlov@gmail.com> | 2016-10-21 17:44:19 +0300 |
|---|---|---|
| committer | Артём Павлов [Artyom Pavlov] <newpavlov@gmail.com> | 2016-10-21 17:44:19 +0300 |
| commit | b374c53ae6af8c64340ef98c69335d21ce2f8334 (patch) | |
| tree | 5595eef0178c85b00a19564a7afc96dd087424e0 /src/libstd | |
| parent | ce8e4e71f8013a98eadec7c89e1782bd78c016c9 (diff) | |
| download | rust-b374c53ae6af8c64340ef98c69335d21ce2f8334.tar.gz rust-b374c53ae6af8c64340ef98c69335d21ce2f8334.zip | |
Small doc change for include!
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/macros.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/libstd/macros.rs b/src/libstd/macros.rs index 40e5dd6ba19..006853063f5 100644 --- a/src/libstd/macros.rs +++ b/src/libstd/macros.rs @@ -452,9 +452,10 @@ pub mod builtin { #[macro_export] macro_rules! cfg { ($($cfg:tt)*) => ({ /* compiler built-in */ }) } - /// Parse the file provided in the argument as an expression or an - /// item according to the context. This file is located relative - /// to the current file (similarly to how modules are found). + /// Parse a file as an expression or an item according to the context. + /// + /// The file is located relative to the current file (similarly to how + /// modules are found) /// /// Using this macro is often a bad idea, because if the file is /// parsed as an expression, it is going to be placed in the |
