You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
0. Navigate into the newly created `mdBook` directory
47
47
0. Run `cargo build`
@@ -57,7 +57,7 @@ We love code quality and Rust has some excellent tools to assist you with contri
57
57
Before you make your Pull Request to the project, please run it through the `rustfmt` utility.
58
58
This will ensure we have good quality source code that is better for us all to maintain.
59
59
60
-
[rustfmt](https://github.com/rust-lang-nursery/rustfmt) has a lot more information on the project.
60
+
[rustfmt](https://github.com/rust-lang/rustfmt) has a lot more information on the project.
61
61
The quick guide is
62
62
63
63
1. Install it
@@ -74,7 +74,7 @@ The quick guide is
74
74
```
75
75
When run through `cargo` it will format all bin and lib files in the current crate.
76
76
77
-
For more information, such as running it from your favourite editor, please see the `rustfmt` project. [rustfmt](https://github.com/rust-lang-nursery/rustfmt)
77
+
For more information, such as running it from your favourite editor, please see the `rustfmt` project. [rustfmt](https://github.com/rust-lang/rustfmt)
78
78
79
79
80
80
#### Finding Issues with Clippy
@@ -83,7 +83,7 @@ Clippy is a code analyser/linter detecting mistakes, and therfore helps to impro
83
83
Like formatting your code with `rustfmt`, running clippy regularly and before your Pull Request will
84
84
help us maintain awesome code.
85
85
86
-
The best documentation can be found over at [rust-clippy](https://github.com/rust-lang-nursery/rust-clippy)
86
+
The best documentation can be found over at [rust-clippy](https://github.com/rust-lang/rust-clippy)
87
87
88
88
1. To install
89
89
```
@@ -94,15 +94,15 @@ The best documentation can be found over at [rust-clippy](https://github.com/rus
94
94
cargo clippy
95
95
```
96
96
97
-
Clippy has an ever growing list of checks, that are managed in [lint files](https://rust-lang-nursery.github.io/rust-clippy/master/index.html).
97
+
Clippy has an ever growing list of checks, that are managed in [lint files](https://rust-lang.github.io/rust-clippy/master/index.html).
98
98
99
99
### Making a pull-request
100
100
101
101
When you feel comfortable that your changes could be integrated into mdBook, you can create a pull-request on GitHub.
102
102
One of the core maintainers will then approve the changes or request some changes before it gets merged.
103
103
104
104
If you want to make your pull-request even better, you might want to run [Clippy](https://github.com/Manishearth/rust-clippy)
105
-
and [rustfmt](https://github.com/rust-lang-nursery/rustfmt) on the code first.
105
+
and [rustfmt](https://github.com/rust-lang/rustfmt) on the code first.
106
106
This is not a requirement though and will never block a pull-request from being merged.
0 commit comments