Skip to content

Commit 1121128

Browse files
committed
rollup merge of rust-lang#16832 : SebastianZaha/fix-inconsistent-version-numbering
2 parents 2847bf0 + 5f919cd commit 1121128

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/doc/guide.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ Put this inside:
315315
[package]
316316
317317
name = "hello_world"
318-
version = "0.1.0"
318+
version = "0.0.1"
319319
authors = [ "Your name <[email protected]>" ]
320320
321321
[[bin]]
@@ -1813,7 +1813,7 @@ Try it out:
18131813

18141814
```{notrust,ignore}
18151815
$ cargo run
1816-
Compiling guessing_game v0.1.0 (file:///home/you/projects/guessing_game)
1816+
Compiling guessing_game v0.0.1 (file:///home/you/projects/guessing_game)
18171817
Running `target/guessing_game`
18181818
Hello, world!
18191819
```
@@ -1959,7 +1959,7 @@ Try running our new program a few times:
19591959

19601960
```{notrust,ignore}
19611961
$ cargo run
1962-
Compiling guessing_game v0.1.0 (file:///home/you/projects/guessing_game)
1962+
Compiling guessing_game v0.0.1 (file:///home/you/projects/guessing_game)
19631963
Running `target/guessing_game`
19641964
Guess the number!
19651965
The secret number is: 7
@@ -2012,7 +2012,7 @@ And trying it out:
20122012

20132013
```{notrust,ignore}
20142014
$ cargo run
2015-
Compiling guessing_game v0.1.0 (file:///home/you/projects/guessing_game)
2015+
Compiling guessing_game v0.0.1 (file:///home/you/projects/guessing_game)
20162016
Running `target/guessing_game`
20172017
Guess the number!
20182018
The secret number is: 57
@@ -2283,7 +2283,7 @@ print an error message and return. Let's give this a shot:
22832283

22842284
```{notrust,ignore}
22852285
$ cargo run
2286-
Compiling guessing_game v0.1.0 (file:///home/you/projects/guessing_game)
2286+
Compiling guessing_game v0.0.1 (file:///home/you/projects/guessing_game)
22872287
Running `target/guessing_game`
22882288
Guess the number!
22892289
The secret number is: 17
@@ -2348,7 +2348,7 @@ Let's try it!
23482348

23492349
```{notrust,ignore}
23502350
$ cargo run
2351-
Compiling guessing_game v0.1.0 (file:///home/you/projects/guessing_game)
2351+
Compiling guessing_game v0.0.1 (file:///home/you/projects/guessing_game)
23522352
Running `target/guessing_game`
23532353
Guess the number!
23542354
The secret number is: 58
@@ -2425,7 +2425,7 @@ that `return`? If we give a non-number answer, we'll `return` and quit. Observe:
24252425

24262426
```{notrust,ignore}
24272427
$ cargo run
2428-
Compiling guessing_game v0.1.0 (file:///home/you/projects/guessing_game)
2428+
Compiling guessing_game v0.0.1 (file:///home/you/projects/guessing_game)
24292429
Running `target/guessing_game`
24302430
Guess the number!
24312431
The secret number is: 59
@@ -2557,7 +2557,7 @@ Now we should be good! Let's try:
25572557

25582558
```{notrust,ignore}
25592559
$ cargo run
2560-
Compiling guessing_game v0.1.0 (file:///home/you/projects/guessing_game)
2560+
Compiling guessing_game v0.0.1 (file:///home/you/projects/guessing_game)
25612561
Running `target/guessing_game`
25622562
Guess the number!
25632563
The secret number is: 61

0 commit comments

Comments
 (0)