We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6332875 commit e24da2bCopy full SHA for e24da2b
1 file changed
src/main/java/org/apache/commons/io/comparator/LastModifiedFileComparator.java
@@ -28,14 +28,14 @@
28
* by their last modified date/time.
29
* <p>
30
* Example of sorting a list of files using the
31
- * {@link #INSTANCE} singleton instance:
+ * {@link #LASTMODIFIED_COMPARATOR} singleton instance:
32
* <pre>
33
* List<File> list = ...
34
* ((AbstractFileComparator) LastModifiedFileComparator.LASTMODIFIED_COMPARATOR).sort(list);
35
* </pre>
36
37
* Example of doing a <i>reverse</i> sort of an array of files using the
38
- * {@link #INSTANCE_REVERSE} singleton instance:
+ * {@link #LASTMODIFIED_REVERSE} singleton instance:
39
40
* File[] array = ...
41
* ((AbstractFileComparator) LastModifiedFileComparator.LASTMODIFIED_REVERSE).sort(array);
0 commit comments