On Thu, 6 Apr 2023 00:49:33 GMT, Tingjun Yuan wrote:
> Fix a typo in the specification of
> `java.util.LinkedHashMap.removeEldestEntry(Map.Entry)`.
>
>> This is the entry that will be removed **it** this method returns `true`.
>
> will become:
>
>> This is the entry that will be removed **if*
Fix a typo in the specification of
`java.util.LinkedHashMap.removeEldestEntry(Map.Entry)`.
> This is the entry that will be removed **it** this method returns `true`.
will become:
> This is the entry that will be removed **if** this method returns `true`.
-
Commit messages:
- Fix