Skip to content
Merged
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 rust-code-analysis-book/src/developers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ After you have finished changing the code, you should **always** verify whether
all tests pass with the `cargo test` command.

```console
cargo test --all-features --verbose
cargo test --all --all-features --verbose
```

## Code Formatting
Expand Down Expand Up @@ -97,7 +97,7 @@ If you have documented your code, to generate the final documentation,
run this command:

```console
cargo doc --all-features --no-deps
cargo doc --open --no-deps
```

Remove the `--no-deps` option if you also want to build the documentation of
Expand Down