diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-06-23 13:18:14 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-23 13:18:14 +0200 |
| commit | 61e881ede3863ca5659431d02a47c708e7d68b4f (patch) | |
| tree | 4e412481e95db18bb0c3cf37c1cd3fdea08643fa | |
| parent | 4e96aba8f6a4ac857d33028af3045ca9a64bc6ee (diff) | |
| parent | 9637d4401481a715e4451db8a6d3744b674eea7e (diff) | |
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".
| -rw-r--r-- | src/doc/style-guide/src/expressions.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/style-guide/src/expressions.md b/src/doc/style-guide/src/expressions.md index 96f66c89c25..8271b42da4c 100644 --- a/src/doc/style-guide/src/expressions.md +++ b/src/doc/style-guide/src/expressions.md @@ -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 { ... }, |
