We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 475ddcb commit 8da55f8Copy full SHA for 8da55f8
src/editions/creating-a-new-project.md
@@ -3,7 +3,7 @@
3
When you create a new project with Cargo, it will automatically add
4
configuration for the latest edition:
5
6
-```rust
+```console
7
> cargo +nightly new foo
8
Created binary (application) `foo` project
9
> cat .\foo\Cargo.toml
@@ -22,7 +22,7 @@ No more configuration needed!
22
If you'd prefer to use an older edition, you can change the value in that
23
key, for example:
24
25
+```toml
26
[package]
27
name = "foo"
28
version = "0.1.0"
@@ -32,4 +32,4 @@ edition = "2015"
32
[dependencies]
33
```
34
35
-This will build your package in Rust 2015.
+This will build your package in Rust 2015.
0 commit comments