fix some typos

This commit is contained in:
Yuxiang Qiu 2024-01-02 19:21:51 -05:00
parent e73bb00542
commit 88541d6637
No known key found for this signature in database
16 changed files with 21 additions and 21 deletions

View file

@ -3786,7 +3786,7 @@ declare_clippy_lint! {
///
/// ### Why is this bad?
/// This pattern is often followed by manual unwrapping of the `Option`. The simplification
/// results in more readable and succint code without the need for manual unwrapping.
/// results in more readable and succinct code without the need for manual unwrapping.
///
/// ### Example
/// ```no_run
@ -3812,7 +3812,7 @@ declare_clippy_lint! {
///
/// ### Why is this bad?
/// This pattern is often followed by manual unwrapping of `Result`. The simplification
/// results in more readable and succint code without the need for manual unwrapping.
/// results in more readable and succinct code without the need for manual unwrapping.
///
/// ### Example
/// ```no_run