Skip to content

Commit

Permalink
Merge pull request JodaOrg#344 from arthurc/fix-comment-typo
Browse files Browse the repository at this point in the history
Fixed comment typo
  • Loading branch information
jodastephen committed Jan 12, 2016
2 parents aaf4396 + 474bf29 commit aaaa743
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/main/java/org/joda/time/DurationFieldType.java
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ protected DurationFieldType(String name) {
/**
* Get the millis field type.
*
* @return the DateTimeFieldType constant
* @return the DurationFieldType constant
*/
public static DurationFieldType millis() {
return MILLIS_TYPE;
Expand All @@ -108,7 +108,7 @@ public static DurationFieldType millis() {
/**
* Get the seconds field type.
*
* @return the DateTimeFieldType constant
* @return the DurationFieldType constant
*/
public static DurationFieldType seconds() {
return SECONDS_TYPE;
Expand All @@ -117,7 +117,7 @@ public static DurationFieldType seconds() {
/**
* Get the minutes field type.
*
* @return the DateTimeFieldType constant
* @return the DurationFieldType constant
*/
public static DurationFieldType minutes() {
return MINUTES_TYPE;
Expand All @@ -126,7 +126,7 @@ public static DurationFieldType minutes() {
/**
* Get the hours field type.
*
* @return the DateTimeFieldType constant
* @return the DurationFieldType constant
*/
public static DurationFieldType hours() {
return HOURS_TYPE;
Expand All @@ -135,7 +135,7 @@ public static DurationFieldType hours() {
/**
* Get the halfdays field type.
*
* @return the DateTimeFieldType constant
* @return the DurationFieldType constant
*/
public static DurationFieldType halfdays() {
return HALFDAYS_TYPE;
Expand All @@ -145,7 +145,7 @@ public static DurationFieldType halfdays() {
/**
* Get the days field type.
*
* @return the DateTimeFieldType constant
* @return the DurationFieldType constant
*/
public static DurationFieldType days() {
return DAYS_TYPE;
Expand All @@ -154,7 +154,7 @@ public static DurationFieldType days() {
/**
* Get the weeks field type.
*
* @return the DateTimeFieldType constant
* @return the DurationFieldType constant
*/
public static DurationFieldType weeks() {
return WEEKS_TYPE;
Expand All @@ -163,7 +163,7 @@ public static DurationFieldType weeks() {
/**
* Get the weekyears field type.
*
* @return the DateTimeFieldType constant
* @return the DurationFieldType constant
*/
public static DurationFieldType weekyears() {
return WEEKYEARS_TYPE;
Expand All @@ -172,7 +172,7 @@ public static DurationFieldType weekyears() {
/**
* Get the months field type.
*
* @return the DateTimeFieldType constant
* @return the DurationFieldType constant
*/
public static DurationFieldType months() {
return MONTHS_TYPE;
Expand All @@ -181,7 +181,7 @@ public static DurationFieldType months() {
/**
* Get the years field type.
*
* @return the DateTimeFieldType constant
* @return the DurationFieldType constant
*/
public static DurationFieldType years() {
return YEARS_TYPE;
Expand All @@ -190,7 +190,7 @@ public static DurationFieldType years() {
/**
* Get the centuries field type.
*
* @return the DateTimeFieldType constant
* @return the DurationFieldType constant
*/
public static DurationFieldType centuries() {
return CENTURIES_TYPE;
Expand All @@ -199,7 +199,7 @@ public static DurationFieldType centuries() {
/**
* Get the eras field type.
*
* @return the DateTimeFieldType constant
* @return the DurationFieldType constant
*/
public static DurationFieldType eras() {
return ERAS_TYPE;
Expand Down

0 comments on commit aaaa743

Please sign in to comment.