Skip to content
Merged
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 @@ -345,7 +345,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 @@ -612,7 +612,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 @@ -697,7 +697,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