Sentence starts with a capital

This commit is contained in:
Gary Gregory 2024-09-04 10:01:04 -04:00
parent a9bb7e90fa
commit 6d29fd4d14
1 changed files with 1 additions and 1 deletions

View File

@ -236,7 +236,7 @@ public abstract class Pair<L, R> implements Map.Entry<L, R>, Comparable<Pair<L,
*/
@Override
public int hashCode() {
// see Map.Entry API specification
// See Map.Entry API specification
return Objects.hashCode(getKey()) ^ Objects.hashCode(getValue());
}