Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ and we use [rustfmt](https://github.com/rust-lang/rustfmt) to make our code clea

1. Install these tools (only once):
```
rustup component add rustfmt --toolchain nightly-2020-02-01
rustup component add rustfmt
rustup component add clippy
```
1. Format the code using rustfmt:
```
cargo +nightly fmt
cargo fmt
```
1. Make sure there are no warnings and errors. Run the Clippy:
```
Expand Down
Loading