Skip to content

Rollup of 8 pull requests #33236

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 19 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
a3f5d8a
make the borrowing example more concrete
kindlychung Apr 15, 2016
4d0b0e9
Improve as_mut ptr method example
GuillaumeGomez Apr 17, 2016
f252cfa
Update ownership.md
Apr 19, 2016
864eba8
Opening sentence was confusing and something cannot be "one of the mo…
Apr 19, 2016
f7ec687
Opening sentence was confusing and something cannot be "one of the mo…
Apr 19, 2016
3e9ea3b
Make HashSet::Insert documentation more consistent
bwinterton Apr 22, 2016
9348618
Improve error message about regions of function body
bombless Apr 26, 2016
6343f26
allow InternedString to be compared to &str directly
oli-obk Apr 26, 2016
10abb66
Update references-and-borrowing.md
kindlychung Apr 26, 2016
e6b9760
Fix use of the `move` command in the Windows shell
TomasHubelbauer Apr 27, 2016
d569228
mir: drop temps outside-in by scheduling the drops inside-out.
eddyb Apr 27, 2016
0fdce5c
Rollup merge of #32991 - kindlychung:patch-2, r=steveklabnik
Manishearth Apr 27, 2016
d9c9c32
Rollup merge of #33056 - GuillaumeGomez:as_mut_ptr_example, r=stevekl…
Manishearth Apr 27, 2016
cc00ebe
Rollup merge of #33095 - xogeny:xogeny-patch-1, r=steveklabnik
Manishearth Apr 27, 2016
be918b6
Rollup merge of #33152 - bwinterton:master, r=steveklabnik
Manishearth Apr 27, 2016
98c91e0
Rollup merge of #33212 - bombless:scope-of-function-body, r=nikomatsakis
Manishearth Apr 27, 2016
e9e85e8
Rollup merge of #33218 - oli-obk:interned_str_cmp, r=nikomatsakis
Manishearth Apr 27, 2016
c316b48
Rollup merge of #33234 - TomasHubelbauer:TomasHubelbauer-patch-1, r=G…
Manishearth Apr 27, 2016
651ae26
Rollup merge of #33239 - eddyb:mir-temp-drops, r=arielb1
Manishearth Apr 27, 2016
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
Prev Previous commit
Next Next commit
Fix use of the move command in the Windows shell
`move` work both in `cmd` and in Powershell. `mv` works only in Powershell and the book says nothing about which shell is recommended so this could confuse beginners.

Closes #33219.
  • Loading branch information
TomasHubelbauer committed Apr 27, 2016
commit e6b9760df21f580e8210f97c01a957a91eeb91b5
2 changes: 1 addition & 1 deletion src/doc/book/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ enter the following commands:

```bash
$ mkdir src
$ mv main.rs src/main.rs
$ mv main.rs src/main.rs # or 'move main.rs src/main.rs' on Windows
$ rm main # or 'del main.exe' on Windows
```

Expand Down