Fix typo in max-doc-length documentation (#8201)

## Summary

Fix typo in `max-doc-length` documentation
This commit is contained in:
Micha Reiser 2023-10-25 15:26:42 +09:00 committed by GitHub
parent e36afc3324
commit 23b55aea30
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -2301,7 +2301,7 @@ pub struct PycodestyleOptions {
/// documentation (`W505`), including standalone comments. By default,
/// this is set to null which disables reporting violations.
///
/// The length is determined by the number of characters per line, except for lines containinAsian characters or emojis.
/// The length is determined by the number of characters per line, except for lines containing Asian characters or emojis.
/// For these lines, the [unicode width](https://unicode.org/reports/tr11/) of each character is added up to determine the length.
///
/// See the [`doc-line-too-long`](https://docs.astral.sh/ruff/rules/doc-line-too-long/) rule for more information.