summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/yjit/yjit.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/yjit/yjit.md b/doc/yjit/yjit.md
index 0da6c15911..a56aec652a 100644
--- a/doc/yjit/yjit.md
+++ b/doc/yjit/yjit.md
@@ -121,7 +121,7 @@ You can dump statistics about compilation and execution by running YJIT with the
./miniruby --yjit-stats myscript.rb
```
-The machine code generated for a given method can be printed by adding `puts YJIT.disasm(method(:method_name))` to a Ruby script. Note that no code will be generated if the method is not compiled.
+The machine code generated for a given method can be printed by adding `puts RubyVM::YJIT.disasm(method(:method_name))` to a Ruby script. Note that no code will be generated if the method is not compiled.
### Command-Line Options