diff options
author | Aleksey Kladov <[email protected]> | 2019-01-08 11:21:29 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-01-08 11:21:29 +0000 |
commit | 96236a9be542be461550083373be3d0cb0bd8406 (patch) | |
tree | 82cfc789fcfeea452e6fb729c6af3d7c840be173 /crates/ra_syntax/src | |
parent | 1e0948a509e8f6ec7cbb5e2ef77669325fee0637 (diff) |
assist to convert if-let to match
Diffstat (limited to 'crates/ra_syntax/src')
-rw-r--r-- | crates/ra_syntax/src/ast.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_syntax/src/ast.rs b/crates/ra_syntax/src/ast.rs index 96879ae5a..d25b5642b 100644 --- a/crates/ra_syntax/src/ast.rs +++ b/crates/ra_syntax/src/ast.rs | |||
@@ -225,7 +225,7 @@ impl Whitespace { | |||
225 | } | 225 | } |
226 | 226 | ||
227 | pub fn has_newlines(&self) -> bool { | 227 | pub fn has_newlines(&self) -> bool { |
228 | self.count_newlines_lazy().count() > 0 | 228 | self.text().contains('\n') |
229 | } | 229 | } |
230 | } | 230 | } |
231 | 231 | ||