Skip to content

Commit

Permalink
change bound to end
Browse files Browse the repository at this point in the history
  • Loading branch information
boucadair authored Oct 9, 2024
1 parent 2660785 commit 7a658d7
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions yang/ietf-schedule.yang
Original file line number Diff line number Diff line change
Expand Up @@ -458,20 +458,20 @@ module ietf-schedule {
the other instances in the recurrence set.";
}
}
choice recurrence-bound {
choice recurrence-end {
description
"Modes to bound the recurrence rule. If no choice is
indicated, the recurrence rule is considered to repeat
forever.";
"Modes to control the end of a recurrence rule. If no
choice is indicated, the recurrence rule is considered
to repeat forever.";
case until {
description
"This case defines a way that bounds the recurrence
rule in an inclusive manner.";
"This case defines a way that limits the end of a
recurrence rule in an inclusive manner.";
leaf utc-until {
type yang:date-and-time;
description
"This parameter specifies a date and time value to
inclusively bound the recurrence in UTC format. If
inclusively terminate the recurrence in UTC format. If
the value specified by this parameter is synchronized
with the specified recurrence, it becomes the last
instance of the recurrence.";
Expand All @@ -480,12 +480,12 @@ module ietf-schedule {
case count {
description
"This case defines the number of occurrences at which
to range-bound the recurrence.";
to terminate the recurrence.";
leaf count {
type uint32;
description
"The positive number of occurrences at which to
range-bound the recurrence.";
terminate the recurrence.";
}
}
}
Expand Down Expand Up @@ -523,9 +523,9 @@ module ietf-schedule {
the format of UTC nor time zone offset to UTC.";
}
}
choice recurrence-bound {
choice recurrence-end {
description
"Modes to bound the recurrence rule. If no choice is
"Modes to terminate the recurrence rule. If no choice is
indicated, the recurrence rule is considered to repeat
forever.";
case until {
Expand All @@ -535,7 +535,7 @@ module ietf-schedule {
leaf until {
type yang:date-and-time;
description
"Specifies a date and time value to bound the
"Specifies a date and time value to terminate the
recurrence. If the value specified by this parameter
is synchronized with the specified recurrence, it
becomes the last instance of the recurrence.";
Expand All @@ -549,7 +549,7 @@ module ietf-schedule {
type uint32;
description
"The positive number of occurrences at which to
range-bound the recurrence.";
terminate the recurrence.";
}
}
}
Expand Down

0 comments on commit 7a658d7

Please sign in to comment.