Functional Programming in Java, Second Edition: p.48 and following: "String.toUpperCase"

In several places, the method

String.toUpperCase()

is misspelled as

String.toUppercase()

sometimes via the :: method reference,

String::toUppercase()

rather than

String::toUpperCase()

JavaDoc page:

Good eyes. Fixed. Thank you.

1 Like

Sadly my actual eyes are no longer so good :wink: