Rollup merge of #112935 - joshtriplett:style-guide-typo-fix, r=compiler-errors

style-guide: Fix typo

"does done fit" should have been "does not fit".
This commit is contained in:
Matthias Krüger 2023-06-23 13:18:14 +02:00 committed by GitHub
commit 61e881ede3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -690,7 +690,7 @@ Where it is possible to use a block form on the right-hand side and avoid
breaking the left-hand side, do that. E.g.
```rust
// Assuming the following line does done fit in the max width
// Assuming the following line does not fit in the max width
a_very_long_pattern | another_pattern => ALongStructName {
...
},