diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/yellow/syntax.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yellow/syntax.rs b/src/yellow/syntax.rs index 487a4ef1d..5b88a3b07 100644 --- a/src/yellow/syntax.rs +++ b/src/yellow/syntax.rs | |||
@@ -132,7 +132,7 @@ impl<R: TreeRoot> fmt::Debug for SyntaxNode<R> { | |||
132 | 132 | ||
133 | fn has_short_text(kind: SyntaxKind) -> bool { | 133 | fn has_short_text(kind: SyntaxKind) -> bool { |
134 | match kind { | 134 | match kind { |
135 | IDENT | LIFETIME => true, | 135 | IDENT | LIFETIME | INT_NUMBER | FLOAT_NUMBER => true, |
136 | _ => false, | 136 | _ => false, |
137 | } | 137 | } |
138 | } | 138 | } |