diff options
author | Yusuke Endoh <[email protected]> | 2024-01-19 16:03:38 +0900 |
---|---|---|
committer | Yusuke Endoh <[email protected]> | 2024-02-15 18:42:31 +0900 |
commit | 25d74b9527cd525042ad0b612b794fa331d3a318 (patch) | |
tree | 3b40adf0eb79bb5d7e81640d98dee162c35c076b /rjit.c | |
parent | 926277bf826127c65689ddf01f94e23d538a3b8b (diff) |
Do not include a backtick in error messages and backtraces
[Feature #16495]
Diffstat (limited to 'rjit.c')
-rw-r--r-- | rjit.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -147,7 +147,7 @@ rb_rjit_setup_options(const char *s, struct rb_rjit_options *rjit_opt) } else { rb_raise(rb_eRuntimeError, - "invalid RJIT option `%s' (--help will show valid RJIT options)", s); + "invalid RJIT option '%s' (--help will show valid RJIT options)", s); } } |