Skip to content

Commit 0c11db8

Browse files
committed
Remove redundant features
1 parent 4c67aef commit 0c11db8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/2018/transitioning/modules/macros.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Now, you write:
3030

3131
```rust,ignore
3232
// Rust 2018
33-
#![feature(rust_2018_preview, use_extern_macros)]
33+
#![feature(rust_2018_preview)]
3434
3535
use bar::baz;
3636
@@ -59,7 +59,7 @@ Now, you write instead:
5959

6060
```rust,ignore
6161
// Rust 2018
62-
#![feature(rust_2018_preview, use_extern_macros)]
62+
#![feature(rust_2018_preview)]
6363
use serde_derive::{Serialize, Deserialize};
6464
6565
#[derive(Serialize, Deserialize)]

0 commit comments

Comments
 (0)