mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-29 20:46:07 +03:00
Apply suggestions from code review
Co-Authored-By: Ralf Jung <post@ralfj.de>
This commit is contained in:
@@ -659,7 +659,7 @@ impl<'a> Chars<'a> {
|
||||
#[stable(feature = "iter_to_slice", since = "1.4.0")]
|
||||
#[inline]
|
||||
pub fn as_str(&self) -> &'a str {
|
||||
// SAFETY: Chars is only made from a str, which guarantees the iter is valid utf8
|
||||
// SAFETY: `Chars` is only made from a str, which guarantees the iter is valid utf8
|
||||
unsafe { from_utf8_unchecked(self.iter.as_slice()) }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user