-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
README.md: fixed link to mdbook #1
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
steveklabnik
added a commit
that referenced
this pull request
Dec 14, 2015
README.md: fixed link to mdbook
Whoops! Thanks 😓 |
Closed
ZhangHanDong
added a commit
to ZhangHanDong/book
that referenced
this pull request
Mar 29, 2017
```rust cargo run > output.txt Compiling greprs v0.1.0 (file:///Users/blackanger/work/box/data/apps/rust/greprs) error: no method named `write_fmt` found for type `&mut std::io::Stderr` in the current scope --> src/main.rs:13:9 | 13 | writeln!( | _________^ starting here... 14 | | &mut stderr, 15 | | "Problem parsing arguments: {}", 16 | | err 17 | | ).expect("Could not write to stderr"); | |_________^ ...ending here | = help: items from traits can only be used if the trait is in scope; the following trait is implemented but not in scope, perhaps add a `use` for it: = help: candidate rust-lang#1: `use std::io::Write;` = note: this error originates in a macro outside of the current crate error: no method named `write_fmt` found for type `&mut std::io::Stderr` in the current scope --> src/main.rs:24:9 | 24 | writeln!( | _________^ starting here... 25 | | &mut stderr, 26 | | "Application error: {}", 27 | | e 28 | | ).expect("Could not write to stderr"); | |_________^ ...ending here | = help: items from traits can only be used if the trait is in scope; the following trait is implemented but not in scope, perhaps add a `use` for it: = help: candidate rust-lang#1: `use std::io::Write;` = note: this error originates in a macro outside of the current crate error: aborting due to 2 previous errors error: Could not compile `greprs`. ```
carols10cents
pushed a commit
that referenced
this pull request
Apr 10, 2017
Update ch17-01-what-is-oo.md
pakosmith
added a commit
to pakosmith/rust-book-ru
that referenced
this pull request
Mar 12, 2020
steveklabnik
pushed a commit
that referenced
this pull request
Jun 5, 2020
Fork von rust-lang/book auf neuesten Stand aktualisieren
amitu
pushed a commit
to FifthTry/rust-book
that referenced
this pull request
Jun 1, 2021
I agree with most of the changes, and edited the rest.
AbrarNitk
pushed a commit
to FifthTry/rust-book
that referenced
this pull request
Jun 2, 2021
Update ch03-03-how-functions-work.md
AbrarNitk
pushed a commit
to FifthTry/rust-book
that referenced
this pull request
Jun 2, 2021
Feature/rust-lang#1 4 2 translation
AbrarNitk
pushed a commit
to FifthTry/rust-book
that referenced
this pull request
Jun 2, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Currently, the link to
mdbook
points to the rust book repository. I think this is intended link?