diff options
| author | Amir Rajan <[email protected]> | 2020-07-25 20:45:03 -0500 |
|---|---|---|
| committer | Amir Rajan <[email protected]> | 2020-07-25 20:45:03 -0500 |
| commit | a1c04fad6a8752a5652d829cd1927d30e696f999 (patch) | |
| tree | f7761e63e492c567cb736ecdb136c68ccff2c0da /dragon/docs.rb | |
| parent | 7fb2ac99d77e6f8c7506271f56cfdce766d5b2e3 (diff) | |
| download | dragonruby-game-toolkit-contrib-a1c04fad6a8752a5652d829cd1927d30e696f999.tar.gz dragonruby-game-toolkit-contrib-a1c04fad6a8752a5652d829cd1927d30e696f999.zip | |
Updated ArrayDocs.
Diffstat (limited to 'dragon/docs.rb')
| -rw-r--r-- | dragon/docs.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dragon/docs.rb b/dragon/docs.rb index fd0e6eb..e951173 100644 --- a/dragon/docs.rb +++ b/dragon/docs.rb @@ -184,13 +184,13 @@ S final_string = "" if self == Kernel $docs_classes.each do |k| - k.methods_with_docs.each do |m| + DocsOrganizer.find_methods_with_docs(k).each do |m| s = k.send m final_string += s + "\n" if block.call s end end else - methods_with_docs.each do |m| + DocsOrganizer.find_methods_with_docs(self).each do |m| s = send m final_string += s + "\n" if block.call s end |
