Small doc change for include!
This commit is contained in:
parent
ce8e4e71f8
commit
b374c53ae6
2 changed files with 5 additions and 6 deletions
|
|
@ -640,9 +640,7 @@ 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.
|
||||
///
|
||||
/// For more information, see the documentation for [`std::include!`].
|
||||
///
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue