chore: fix typo

Signed-off-by: goodmost <zhaohaiyang@outlook.com>
This commit is contained in:
goodmost 2024-03-19 22:09:05 +08:00
parent b5dcaae844
commit e7c3e049f8

View File

@ -250,7 +250,7 @@ declare_clippy_lint! {
///
/// ### Why is this bad?
/// A `Result` is at least as large as the `Err`-variant. While we
/// expect that variant to be seldomly used, the compiler needs to reserve
/// expect that variant to be seldom used, the compiler needs to reserve
/// and move that much memory every single time.
/// Furthermore, errors are often simply passed up the call-stack, making
/// use of the `?`-operator and its type-conversion mechanics. If the