ruby-hacking-guide.github.com icon indicating copy to clipboard operation
ruby-hacking-guide.github.com copied to clipboard

wrong generated <acronym>s

Open onyxblade opened this issue 8 years ago • 1 comments

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) &&

(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.

onyxblade avatar Oct 19 '17 07:10 onyxblade

Another issue due to textile format: while rendering rb_intern("__attached__"), the __attached__ will become attached in italic.

onyxblade avatar Oct 19 '17 08:10 onyxblade