Skip to content

Commit

Permalink
Javadoc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mangstadt committed Oct 29, 2023
1 parent 0ad973e commit 0b1f5ea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/biweekly/util/Recurrence.java
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ public Builder(Recurrence recur) {
}

/**
* Sets the frequency
* Sets the frequency.
* @param frequency the frequency
* @return this
*/
Expand All @@ -376,7 +376,7 @@ public Builder frequency(Frequency frequency) {
/**
* Sets the date that the recurrence stops. Note that the UNTIL and
* COUNT fields cannot both be defined within the same rule.
* @param until the date
* @param until the date that the recurrence stops
* @return this
*/
public Builder until(ICalDate until) {
Expand Down Expand Up @@ -408,7 +408,7 @@ public Builder until(Date until, boolean hasTime) {
}

/**
* Gets the number of times the rule will be repeated. Note that the
* Sets the number of times the rule will be repeated. Note that the
* UNTIL and COUNT fields cannot both be defined within the same rule.
* @param count the number of times to repeat the rule
* @return this
Expand All @@ -419,7 +419,7 @@ public Builder count(Integer count) {
}

/**
* Gets how often the rule repeats, in relation to the frequency.
* Sets how often the rule repeats in relation to the frequency.
* @param interval the repetition interval
* @return this
*/
Expand Down

0 comments on commit 0b1f5ea

Please sign in to comment.