Skip to content
This repository has been archived by the owner on May 5, 2019. It is now read-only.

Commit

Permalink
Add missing space after commas
Browse files Browse the repository at this point in the history
  • Loading branch information
joshtriplett committed Aug 15, 2018
1 parent b5724d1 commit fd315f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/editions/transitioning-your-code-to-a-new-edition.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ further testing and feedback on. Please try it out, by adding the following to
your `lib.rs` or `main.rs`:

```rust
#![feature(rust_2018_preview,uniform_paths)]
#![feature(rust_2018_preview, uniform_paths)]
```

The release of Rust 2018 will stabilize one of the two module path variants and
Expand Down
2 changes: 1 addition & 1 deletion src/rust-2018/path-clarity.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ new "uniform paths" variant introduced in edition preview 2. The release of
Rust 2018 will stabilize one of these two variants and drop the other.

To test Rust 2018 with the new "uniform paths" variant, put
`#![feature(rust_2018_preview,uniform_paths)]` at the top of your `lib.rs` or
`#![feature(rust_2018_preview, uniform_paths)]` at the top of your `lib.rs` or
`main.rs`.

Here's a brief summary:
Expand Down

0 comments on commit fd315f0

Please sign in to comment.