From 7adab819074e448ffbb6e8d99e4edb0567e4405a Mon Sep 17 00:00:00 2001 From: yui-knk Date: Sun, 18 Jun 2023 10:23:23 +0900 Subject: [PATCH] Fix the format of NODE_EVSTR rendered by dump_node --- node_dump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node_dump.c b/node_dump.c index 331ea4da520c6c..52c49df5fae850 100644 --- a/node_dump.c +++ b/node_dump.c @@ -757,7 +757,7 @@ dump_node(VALUE buf, VALUE indent, int comment, const NODE * node) case NODE_EVSTR: ANN("interpolation expression"); - ANN("format: \"..#{ [nd_lit] }..\""); + ANN("format: \"..#{ [nd_body] }..\""); ANN("example: \"foo#{ bar }baz\""); LAST_NODE; F_NODE(nd_body, "body");