Skip to content

Commit

Permalink
chore(clippy): fix typo (#5700)
Browse files Browse the repository at this point in the history
  • Loading branch information
heygsc authored Sep 11, 2024
1 parent d8ec781 commit a79c553
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .clippy.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ disallowed-methods = [
{ path = "str::to_ascii_uppercase", reason = "To avoid memory allocation, use `cow_utils::CowUtils::cow_to_ascii_uppercase` instead." },
{ path = "str::to_lowercase", reason = "To avoid memory allocation, use `cow_utils::CowUtils::cow_to_lowercase` instead." },
{ path = "str::to_uppercase", reason = "To avoid memory allocation, use `cow_utils::CowUtils::cow_to_uppercase` instead." },
{ path = "str::replace", reason = "To avoid memory allocation, use `cow_utils::CowUtils::replace` instead." },
{ path = "str::replacen", reason = "To avoid memory allocation, use `cow_utils::CowUtils::replacen` instead." },
{ path = "str::replace", reason = "To avoid memory allocation, use `cow_utils::CowUtils::cow_replace` instead." },
{ path = "str::replacen", reason = "To avoid memory allocation, use `cow_utils::CowUtils::cow_replacen` instead." },
]

0 comments on commit a79c553

Please sign in to comment.