ruby-hacking-guide.github.com
ruby-hacking-guide.github.com copied to clipboard
Ruby Hacking Guide Translation
Results
2
ruby-hacking-guide.github.com issues
Sort by
recently updated
recently updated
newest added
Hi @markburns and thanks for making the book available! I'm currently going over it to give it a style refresh/fix. This is still a work in progress but I wanted...
https://ruby-hacking-guide.github.io/class.html In the "Compressed `rb_singleton_class()`" section, there is a line: ``` 701 if (FL_TEST(RBASIC→klass, FL_SINGLETON) && ``` However the correct one should be: ``` 701 if (FL_TEST(RBASIC(obj)->klass, FL_SINGLETON) && ```...