diff options
author | Peter Zhu <peter@peterzhu.ca> | 2022-12-12 09:56:44 -0500 |
---|---|---|
committer | Peter Zhu <peter@peterzhu.ca> | 2022-12-12 09:56:44 -0500 |
commit | 58e3ce5de6e54e4ede6ab6c5df2426ddb92b5a17 (patch) | |
tree | a4a97bbe79d5a9fc930250123ccaac778435c21e | |
parent | 87d54708735a77c867638e3157695d75cab279b3 (diff) | |
download | ruby-58e3ce5de6e54e4ede6ab6c5df2426ddb92b5a17.tar.gz |
[DOC] Fix typo in docs for ObjectSpace.dump_all
-rw-r--r-- | ext/objspace/lib/objspace.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/objspace/lib/objspace.rb b/ext/objspace/lib/objspace.rb index d8c3689232..14d06db040 100644 --- a/ext/objspace/lib/objspace.rb +++ b/ext/objspace/lib/objspace.rb @@ -54,7 +54,7 @@ module ObjectSpace # # Dump the contents of the ruby heap as JSON. # - # _full__ must be a boolean. If true all heap slots are dumped including the empty ones (T_NONE). + # _full_ must be a boolean. If true all heap slots are dumped including the empty ones (T_NONE). # # _since_ must be a non-negative integer or +nil+. # |