diff options
| author | Kevin Newton <kddnewton@gmail.com> | 2024-02-13 20:41:54 -0500 |
|---|---|---|
| committer | git <svn-admin@ruby-lang.org> | 2024-02-14 01:42:01 +0000 |
| commit | 068b19bd53148d91397d0443de78eeeb8c1628ba (patch) | |
| tree | a4c20bad929cbda8a69ca2b7fa8a971a4ca2a07a | |
| parent | c54622c657cbdd8fd13790d5c339b8dbadff8b14 (diff) | |
[ruby/prism] Match up token name to CRuby
https://github.com/ruby/prism/commit/cf0369a5c7
| -rw-r--r-- | prism/templates/src/token_type.c.erb | 2 |
1 files changed, 1 insertions, 1 deletions
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: |
