doc: Remove reference to clippy::manual-strip. (#9794)

This should have been removed in
8a9f475edb when the rest of the references
to / usages of `clippy::manual-strip` were removed. It was originally
needed in the long ago past when supporting Rust 1.45 was a concern.

# Objective

- Docs on linting should match the actual current practice.
- Docs currently mention `-A clippy::manual-strip` which hasn't been
needed in a long time.

## Solution

- Remove reference to `-A clippy::manual-strip`.
This commit is contained in:
Bruce Mitchener 2023-09-14 19:44:41 +07:00 committed by GitHub
parent 90b741d3d3
commit 8192ac6f1e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,7 +13,7 @@ cargo fmt --all
Can be automatically run with [`cargo run -p ci`](../tools/ci) (which also runs other checks) or manually with this command:
```bash
cargo clippy --workspace --all-targets --all-features -- -D warnings -A clippy::type_complexity -A clippy::manual-strip
cargo clippy --workspace --all-targets --all-features -- -D warnings -A clippy::type_complexity
```
Explanation: