We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://ruby-hacking-guide.github.io/class.html In the "Compressed rb_singleton_class()" section, there is a line:
rb_singleton_class()
701 if (FL_TEST(RBASIC→klass, FL_SINGLETON) &&
However the correct one should be:
701 if (FL_TEST(RBASIC(obj)->klass, FL_SINGLETON) &&
(from http://i.loveruby.net/ja/rhg/book/class.html).
FL_TEST(<acronym title="obj"><span class="caps">RBASIC</span></acronym>
The html source shows that the obj term becomes part of an <acronym> tag, seems like wrong generated.
obj
<acronym>
The text was updated successfully, but these errors were encountered:
Another issue due to textile format: while rendering rb_intern("__attached__"), the __attached__ will become attached in italic.
rb_intern("__attached__")
__attached__
attached
Sorry, something went wrong.
No branches or pull requests
https://ruby-hacking-guide.github.io/class.html
In the "Compressed
rb_singleton_class()
" section, there is a line:However the correct one should be:
(from http://i.loveruby.net/ja/rhg/book/class.html).
The html source shows that the
obj
term becomes part of an<acronym>
tag, seems like wrong generated.The text was updated successfully, but these errors were encountered: