Apply suggestions from code review

Co-Authored-By: Ralf Jung <post@ralfj.de>
This commit is contained in:
Phoebe Bell 2019-12-26 11:57:57 -08:00
parent a93e99cae7
commit e0140ffeb0

View file

@ -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()) }
}
}