diff options
author | Aleksey Kladov <[email protected]> | 2021-05-07 21:35:43 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2021-05-07 21:50:24 +0100 |
commit | 53f7149d4510137111ed810803e9529157537288 (patch) | |
tree | ab508ae06c161225c9f70452c6c54decd02d0e54 /crates/cfg/src | |
parent | ba8620398713d6f116dd1cce1a7e1cd6e3f97461 (diff) |
internal: expose cfg attrs from hir::Crate
Diffstat (limited to 'crates/cfg/src')
-rw-r--r-- | crates/cfg/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/cfg/src/lib.rs b/crates/cfg/src/lib.rs index d88ecf8b0..59fd38880 100644 --- a/crates/cfg/src/lib.rs +++ b/crates/cfg/src/lib.rs | |||
@@ -13,7 +13,7 @@ use tt::SmolStr; | |||
13 | pub use cfg_expr::{CfgAtom, CfgExpr}; | 13 | pub use cfg_expr::{CfgAtom, CfgExpr}; |
14 | pub use dnf::DnfExpr; | 14 | pub use dnf::DnfExpr; |
15 | 15 | ||
16 | /// Configuration options used for conditional compilition on items with `cfg` attributes. | 16 | /// Configuration options used for conditional compilation on items with `cfg` attributes. |
17 | /// We have two kind of options in different namespaces: atomic options like `unix`, and | 17 | /// We have two kind of options in different namespaces: atomic options like `unix`, and |
18 | /// key-value options like `target_arch="x86"`. | 18 | /// key-value options like `target_arch="x86"`. |
19 | /// | 19 | /// |