Uploaded image for project: 'Commons Math'
  1. Commons Math
  2. MATH-767

Unbalanced <code> usage in javadoc

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 3.0
    • 3.1
    • None
    • n/a

    Description

      See http://commons.apache.org/math/apidocs/index-all.html and scroll to the section 'D'. Observe how in method discardMostRecentElements(int) in class org.apache.commons.math3.util.ResizableDoubleArray, the style changes to larger font. As we can see in the source code for that method:

           * Discards the <code>i<code> last elements of the array.  For example,
      

      this should become:

           * Discards the <code>i</code> last elements of the array.  For example,
      

      as then the <code>...</code> is balanced. Or even better, it could become:

           * Discards the {@code i} last elements of the array.  For example,
      

      This applies elsewhere as well, for instance the isSame(Chromosome) method in the org.apache.commons.math3.genetics.BinaryChromosome class.

      We should probably check all javadoc, to make sure this is correct everywhere. Since it is way too much to do manually, maybe a script or other automated check could detect such cases?

      Attachments

        Activity

          People

            Unassigned Unassigned
            dhendriks Dennis Hendriks
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: