aboutsummaryrefslogtreecommitdiff
path: root/src/yellow/syntax.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/yellow/syntax.rs')
-rw-r--r--src/yellow/syntax.rs2
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
133fn has_short_text(kind: SyntaxKind) -> bool { 133fn 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}