diff options
author | yui-knk <[email protected]> | 2024-05-03 08:57:55 +0900 |
---|---|---|
committer | Yuichiro Kaneko <[email protected]> | 2024-05-03 12:40:35 +0900 |
commit | 899d9f79dde0e2dbb2da3a6ec7c1cbf1023cc56d (patch) | |
tree | ab7c9a58f20afec022d74c2a45fcd09c0c05d82c /internal/ruby_parser.h | |
parent | e1905ca18047e2dff73115f432ddfa532f7d396e (diff) |
Rename `vast` to `ast_value`
There is an English word "vast".
This commit changes the name to be more clear name to avoid confusion.
Diffstat (limited to 'internal/ruby_parser.h')
-rw-r--r-- | internal/ruby_parser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/ruby_parser.h b/internal/ruby_parser.h index 98c3461954..f7f859cb70 100644 --- a/internal/ruby_parser.h +++ b/internal/ruby_parser.h @@ -97,6 +97,6 @@ enum lex_state_e { }; VALUE rb_ruby_ast_new(const NODE *const root); -rb_ast_t *rb_ruby_ast_data_get(VALUE vast); +rb_ast_t *rb_ruby_ast_data_get(VALUE ast_value); #endif /* INTERNAL_RUBY_PARSE_H */ |