From 068b19bd53148d91397d0443de78eeeb8c1628ba Mon Sep 17 00:00:00 2001 From: Kevin Newton Date: Tue, 13 Feb 2024 20:41:54 -0500 Subject: [PATCH] [ruby/prism] Match up token name to CRuby https://github.com/ruby/prism/commit/cf0369a5c7 --- prism/templates/src/token_type.c.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prism/templates/src/token_type.c.erb b/prism/templates/src/token_type.c.erb index ebcbb5e051..493d46f188 100644 --- a/prism/templates/src/token_type.c.erb +++ b/prism/templates/src/token_type.c.erb @@ -350,7 +350,7 @@ pm_token_type_human(pm_token_type_t token_type) { case PM_TOKEN_UPLUS: return "'+'"; case PM_TOKEN_USTAR: - return "'*'"; + return "*"; case PM_TOKEN_USTAR_STAR: return "'**'"; case PM_TOKEN_WORDS_SEP: