# HG changeset patch # User psandoz # Date 1369987080 -7200 # Node ID eef25bc37ccda7e498512cf18d66cc2e435f9063 # Parent b5c4ce8b74c514e87b2c4df021eed8733a497939 8014732: Minor spec issue: java.util.Spliterator.getExactSizeIfKnown Summary: A minor documentation issue (not a spec issue). Reviewed-by: chegar, dl diff -r b5c4ce8b74c5 -r eef25bc37ccd jdk/src/share/classes/java/util/Spliterator.java --- a/jdk/src/share/classes/java/util/Spliterator.java Thu May 30 14:11:32 2013 -0700 +++ b/jdk/src/share/classes/java/util/Spliterator.java Fri May 31 09:58:00 2013 +0200 @@ -394,9 +394,9 @@ * Convenience method that returns {@link #estimateSize()} if this * Spliterator is {@link #SIZED}, else {@code -1}. * @implSpec - * The default returns the result of {@code estimateSize()} if the - * Spliterator reports a characteristic of {@code SIZED}, and {@code -1} - * otherwise. + * The default implementation returns the result of {@code estimateSize()} + * if the Spliterator reports a characteristic of {@code SIZED}, and + * {@code -1} otherwise. * * @return the exact size, if known, else {@code -1}. */