From a604fe42620735f7bd1145e01bdca5398231ffb0 Mon Sep 17 00:00:00 2001 From: Adam Hess Date: Thu, 14 Dec 2023 14:40:37 -0800 Subject: [PATCH] update message to clarify compiler, not parser Co-authored-by: Ufuk Kayserilioglu --- ruby.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ruby.c b/ruby.c index 19c70d36fd..dd01b127f3 100644 --- a/ruby.c +++ b/ruby.c @@ -1411,7 +1411,7 @@ proc_long_options(ruby_cmdline_options_t *opt, const char *s, long argc, char ** else if (is_option_with_arg("parser", Qfalse, Qtrue)) { if (strcmp("prism", s) == 0) { (*rb_ruby_prism_ptr()) = true; - rb_warn("The Prism compiler is currently experimental and compatibility with parse.y is not yet complete. Please report an issues you find on the prism issue tracker."); + rb_warn("The compiler based on the Prism parser is currently experimental and compatibility with the compiler based on parse.y is not yet complete. Please report any issues you find on the `ruby/prism` issue tracker."); } else if (strcmp("parse.y", s) == 0) { // default behavior