Remove unnecessary [..]
Replaces (&self[..]).strip_formatting() with (&self).strip_formatting() in `impl FormattedStringExt for String`
This commit is contained in:
parent
a8a48bf4a1
commit
acc6d7f0f0
1 changed files with 3 additions and 3 deletions
|
@ -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()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue