Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use cfg(false) instead of cfg(FALSE) #1763

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/items/enumerations.md
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ macro_rules! mac_variant {
mac_variant! { E }

// This is allowed, since it is removed before being validated.
#[cfg(FALSE)]
#[cfg(false)]
enum E {
pub U,
pub(crate) T(u8),
Expand Down
4 changes: 2 additions & 2 deletions src/tokens.md
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ Note that `-1i8`, for example, is analyzed as two tokens: `-` followed by `1i8`.
Examples of integer literals which are not accepted as literal expressions:

```rust
# #[cfg(FALSE)] {
# #[cfg(false)] {
0invalidSuffix;
123AFB43;
0b010a;
Expand Down Expand Up @@ -676,7 +676,7 @@ Note that `-1.0`, for example, is analyzed as two tokens: `-` followed by `1.0`.
Examples of floating-point literals which are not accepted as literal expressions:

```rust
# #[cfg(FALSE)] {
# #[cfg(false)] {
2.0f80;
2e5f80;
2e5e6;
Expand Down
Loading