Merge pull request #203 from teloxide/rustfmt-contributing-md

Simpler form of using nightly rustfmt
This commit is contained in:
Temirkhan Myrzamadi 2020-04-19 19:26:03 +03:00 committed by GitHub
commit 0ad41d6fe4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,14 +7,8 @@ To change the source code, fork the `master` branch of this repository and work
cargo clippy --all --all-features --all-targets
cargo test --all
cargo doc --open
cargo fmt --all -- --check
# Using nightly rustfmt
cargo +nightly fmt --all -- --check
```
To report a bug, suggest new functionality, or ask a question, go to [Issues](https://github.com/teloxide/teloxide/issues). Try to make MRE (**M**inimal **R**eproducible **E**xample) and specify your teloxide version to let others help you.
And don't forget to switch to the nightly channel in order to be able to run `cargo fmt` (because our [rustfmt.toml](https://github.com/teloxide/teloxide/blob/master/rustfmt.toml) requires some nightly-only functionality):
```bash
$ rustup override set nightly
```