Rollup merge of #114867 - ttsugriy:ttsugriy-patch-1, r=scottmcm

[nit] Fix a comment typo.
This commit is contained in:
Matthias Krüger 2023-08-16 08:43:53 +02:00 committed by GitHub
commit 8201f0ffda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -612,7 +612,7 @@ pub unsafe fn from_boxed_utf8_unchecked(v: Box<[u8]>) -> Box<str> {
}
/// Converts the bytes while the bytes are still ascii.
/// For better average performance, this is happens in chunks of `2*size_of::<usize>()`.
/// For better average performance, this happens in chunks of `2*size_of::<usize>()`.
/// Returns a vec with the converted bytes.
#[inline]
#[cfg(not(test))]