Rollup merge of #147110 - SebastianSpeitel:patch-1, r=saethlin

Fix typo

Noticed this when looking at the source on doc.rust-lang.org
This commit is contained in:
Matthias Krüger 2025-09-28 09:15:30 +02:00 committed by GitHub
commit f4032bcb8a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3234,7 +3234,7 @@ fn inlined_slow_read_byte<R: Read>(reader: &mut R) -> Option<Result<u8>> {
}
}
// Used by `BufReader::spec_read_byte`, for which the `inline(ever)` is
// Used by `BufReader::spec_read_byte`, for which the `inline(never)` is
// important.
#[inline(never)]
fn uninlined_slow_read_byte<R: Read>(reader: &mut R) -> Option<Result<u8>> {