Skip to content

Commit

Permalink
Fix problem with javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
MidVision committed Oct 6, 2017
1 parent bc4f18c commit f9d1617
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
import java.util.Comparator;

/**
*
*
*
*
* Sorts based on "Natural human ordering".
* </p>
*
* Typically a lexicographic sort would place (in ascending order):
* </p>
*
* AAA_100, AAA_101, AAA_28, AAA_32
* </p>
*
* (This) Human sort will place (in ascending order):
* </p>
*
* AAA_28, AAA_32, AAA_100, AAA_101
*/
public final class NaturalOrderComparator implements Comparator<Object> {
Expand Down

0 comments on commit f9d1617

Please sign in to comment.