Don't use single-character string constants in the is_backward
function
See https://github.com/Manishearth/rust-clippy/wiki#single_char_pattern for further info Signed-off-by: Victor Porof <vporof@mozilla.com>
This commit is contained in:
parent
5d74f1ee94
commit
707ce36236
1 changed files with 1 additions and 1 deletions
|
@ -169,7 +169,7 @@ impl NamespacedKeyword {
|
||||||
/// ```
|
/// ```
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn is_backward(&self) -> bool {
|
pub fn is_backward(&self) -> bool {
|
||||||
self.name.starts_with("_")
|
self.name.starts_with('_')
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Whether this `NamespacedKeyword` should be interpreted in forward order.
|
/// Whether this `NamespacedKeyword` should be interpreted in forward order.
|
||||||
|
|
Loading…
Reference in a new issue