Clarify to prevent unintended recursions

This commit is contained in:
Eunchong Yu 2018-08-19 08:54:22 +09:00
parent 12003c880c
commit 1cf7744156

View file

@ -102,10 +102,10 @@ impl FormattedStringExt for str {
impl FormattedStringExt for String { impl FormattedStringExt for String {
fn is_formatted(&self) -> bool { fn is_formatted(&self) -> bool {
(&self).is_formatted() (&self[..]).is_formatted()
} }
fn strip_formatting(&self) -> Cow<str> { fn strip_formatting(&self) -> Cow<str> {
(&self).strip_formatting() (&self[..]).strip_formatting()
} }
} }