From 73bd63d69dba21febd8393b7c7d17f620ac99c2e Mon Sep 17 00:00:00 2001 From: Lukas Neubert Date: Sun, 10 Jan 2021 11:19:59 +0100 Subject: [PATCH] token: remove // from comment kind string (#7992) --- vlib/v/token/token.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/token/token.v b/vlib/v/token/token.v index f13ec395d6..45c5888832 100644 --- a/vlib/v/token/token.v +++ b/vlib/v/token/token.v @@ -237,7 +237,7 @@ fn build_token_str() []string { s[Kind.question] = '?' s[Kind.left_shift] = '<<' s[Kind.right_shift] = '>>' - s[Kind.comment] = '// comment' + s[Kind.comment] = 'comment' s[Kind.nl] = 'NLL' s[Kind.dollar] = '$' s[Kind.at] = '@'