lsegal / yard

YARD is a Ruby Documentation tool. The Y stands for "Yay!"
http://yardoc.org
MIT License
1.95k stars 398 forks source link

Preserve order of tags when reference tags are mixed with local tags #1486

Open notEthan opened 1 year ago

notEthan commented 1 year ago

Currently, ref tags are always rendered after local tags, resulting, for me, in @param tags showing up in a different order than the actual method. This PR removes separation of ref and local tags, so Docstring#tags can dereference and return tags in the right order.

Completed Tasks