Skip to content
This repository has been archived by the owner on Mar 20, 2018. It is now read-only.

Commit

Permalink
Remove 'calendrical'
Browse files Browse the repository at this point in the history
  • Loading branch information
jodastephen committed Nov 1, 2012
1 parent 0a8f65a commit b3c7171
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -68,7 +68,7 @@
/**
* A date-time without a time-zone for the calendar neutral API.
* <p>
* {@code ChronoLocalDateTime} is an immutable calendrical that represents a date-time, often
* {@code ChronoLocalDateTime} is an immutable date-time object that represents a date-time, often
* viewed as year-month-day-hour-minute-second. This object can also access other
* fields such as day-of-year, day-of-week and week-of-year.
* <p>
Expand Down
Expand Up @@ -49,7 +49,7 @@
/**
* A date-time without a time-zone for the calendar neutral API.
* <p>
* {@code ChronoLocalDateTime} is an immutable calendrical that represents a date-time, often
* {@code ChronoLocalDateTime} is an immutable date-time object that represents a date-time, often
* viewed as year-month-day-hour-minute-second. This object can also access other
* fields such as day-of-year, day-of-week and week-of-year.
* <p>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/javax/time/LocalDate.java
Expand Up @@ -306,7 +306,7 @@ public static LocalDate from(DateTimeAccessor dateTime) {
if (obj == null) {
return ofEpochDay(dateTime.getLong(LocalDateTimeField.EPOCH_DAY));
}
return DateTimes.ensureNotNull(obj, "Unable to convert calendrical to LocalDate: ", dateTime.getClass());
return DateTimes.ensureNotNull(obj, "Unable to convert date-time to LocalDate: ", dateTime.getClass());
}

//-----------------------------------------------------------------------
Expand Down

0 comments on commit b3c7171

Please sign in to comment.