[ruby/prism] Match up token name to CRuby

https://github.com/ruby/prism/commit/cf0369a5c7
This commit is contained in:
Kevin Newton 2024-02-13 20:41:54 -05:00 committed by git
parent c54622c657
commit 068b19bd53

View File

@ -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: