File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -32,35 +32,35 @@ You can create a block by sending a parcel through [JSON-RPC](https://github.com
3232## Formatting
3333
3434
35- Make sure you run ` rustfmt ` before creating a PR to the repo. You need to install the nightly-2018-12-16 version of ` rustfmt ` .
35+ Make sure you run ` rustfmt ` before creating a PR to the repo. You need to install the nightly-2018-12-06 version of ` rustfmt ` .
3636
3737```
38- rustup toolchain install nightly-2018-12-16
39- rustup component add rustfmt-preview --toolchain nightly-2018-12-16
38+ rustup toolchain install nightly-2018-12-06
39+ rustup component add rustfmt-preview --toolchain nightly-2018-12-06
4040```
4141
4242To run ` rustfmt ` ,
4343
4444```
45- cargo +nightly-2018-12-16 fmt
45+ cargo +nightly-2018-12-06 fmt
4646```
4747
4848## Linting
4949
5050You should run ` clippy ` also. This is a lint tool for rust. It suggests more efficient/readable code.
5151You can see [ the clippy document] ( https://rust-lang.github.io/rust-clippy/master/index.html ) for more information.
52- You need to install the nightly-2018-12-16 version of ` clippy ` .
52+ You need to install the nightly-2018-12-06 version of ` clippy ` .
5353
5454### Install
5555```
56- rustup toolchain install nightly-2018-12-16
57- rustup component add clippy-preview --toolchain nightly-2018-12-16
56+ rustup toolchain install nightly-2018-12-06
57+ rustup component add clippy-preview --toolchain nightly-2018-12-06
5858```
5959
6060### Run
6161
6262```
63- cargo +nightly-2018-12-16 clippy --all
63+ cargo +nightly-2018-12-06 clippy --all
6464```
6565
6666## Testing
You can’t perform that action at this time.
0 commit comments