rdoc
rdoc copied to clipboard
Shared method definition duplicates method name in the main body of the rdocs
"===" and "==" in numeric.c refer to the same method definitions.
When running rdoc over numeric.c the results include "===" in the list of methods but the link goes to a item title "==".
"==" appears twice in the main body of the resulting docs; there is no "===" in the main body.
I.e., this appears twice in the main body:
fix == other → true or false
edit: The method defs are in numeric.c, but the issue manifests itself n Fixnum.html
This same behavior can be seen when running rdoc over the file numeric.c. The resulting docs list methods such as ceil, truncate, and floor, but in the main body of the docs you get multiple instances of to_i.