--- old/src/java.base/share/classes/java/time/chrono/package-info.java 2020-03-13 15:38:58.000000000 +0000 +++ new/src/java.base/share/classes/java/time/chrono/package-info.java 2020-03-13 15:38:58.000000000 +0000 @@ -97,10 +97,10 @@ * *

Example

*

- * This example lists todays date for all of the available calendars. + * This example lists today's date for all of the available calendars. *

*
- *   // Enumerate the list of available calendars and print todays date for each.
+ *   // Enumerate the list of available calendars and print today's date for each.
  *       Set<Chronology> chronos = Chronology.getAvailableChronologies();
  *       for (Chronology chrono : chronos) {
  *           ChronoLocalDate date = chrono.dateNow();