; Fix typos in iCalendar macro and recurrence docstrings

* lisp/calendar/icalendar-macs.el (ical:with-node-value)
(ical:with-property, ical:with-param, ical:with-child-of):
"evalutes" -> "evaluates".
* lisp/calendar/icalendar-recur.el (icr:tz--get-updated-in):
"occurence" -> "occurrence".

Copyright-paperwork-exempt: yes
This commit is contained in:
William Theesfeld 2026-06-05 15:41:38 -04:00 committed by Sean Whitton
parent 912c8e3691
commit fff343c332
2 changed files with 5 additions and 5 deletions

View file

@ -989,7 +989,7 @@ Each binding in BINDINGS should be a list of one of the following forms:
"Execute BODY with bindings in BINDINGS taken from NODE and its children. "Execute BODY with bindings in BINDINGS taken from NODE and its children.
NODE should be an iCalendar syntax node representing a property or NODE should be an iCalendar syntax node representing a property or
parameter. If NODE is not a syntax node, this form evalutes to nil parameter. If NODE is not a syntax node, this form evaluates to nil
without binding the variables in BINDINGS and without executing BODY. without binding the variables in BINDINGS and without executing BODY.
Within BODY, if NODE's value is itself a syntax node, the symbol Within BODY, if NODE's value is itself a syntax node, the symbol
@ -1044,7 +1044,7 @@ available in BODY; see its docstring for their form."
"Execute BODY with BINDINGS taken from the value and parameters in NODE. "Execute BODY with BINDINGS taken from the value and parameters in NODE.
NODE should be an iCalendar syntax node representing a property. If NODE NODE should be an iCalendar syntax node representing a property. If NODE
is not a syntax node, this form evalutes to nil without binding the is not a syntax node, this form evaluates to nil without binding the
variables in BINDINGS and without executing BODY. variables in BINDINGS and without executing BODY.
Within BODY, if NODE's value is itself a syntax node, the symbol Within BODY, if NODE's value is itself a syntax node, the symbol
@ -1067,7 +1067,7 @@ available in BODY; see its docstring for their form.")
"Bind the value in PARAMETER and execute BODY. "Bind the value in PARAMETER and execute BODY.
PARAMETER should be an iCalendar syntax node representing a PARAMETER should be an iCalendar syntax node representing a
parameter. If PARAMETER is nil, this form evalutes to nil without parameter. If PARAMETER is nil, this form evaluates to nil without
executing BODY. executing BODY.
Within BODY, if PARAMETER's value is a syntax node, the symbol Within BODY, if PARAMETER's value is a syntax node, the symbol
@ -1087,7 +1087,7 @@ bound to nil."
Find the first child node of type TYPE in NODE, bind that Find the first child node of type TYPE in NODE, bind that
child node's value and any of its children in BINDINGS and execute BODY child node's value and any of its children in BINDINGS and execute BODY
with these bindings. If there is no such node, this form evalutes to with these bindings. If there is no such node, this form evaluates to
nil without executing BODY. nil without executing BODY.
Within BODY, the symbols `value-node', `value-type', and `value' will be Within BODY, the symbols `value-node', `value-type', and `value' will be

View file

@ -1644,7 +1644,7 @@ with the UTC offset in effect prior to the OBS-ONSET of OBSERVANCE (see
RFC5545 Section 3.3.5). So e.g. at the switch from Standard to Daylight RFC5545 Section 3.3.5). So e.g. at the switch from Standard to Daylight
in US Eastern, 2:30AM EST (a nonexistent time) becomes 3:30AM EDT, and in US Eastern, 2:30AM EST (a nonexistent time) becomes 3:30AM EDT, and
at the switch from Daylight to Standard, 1:30AM (which occurs twice) at the switch from Daylight to Standard, 1:30AM (which occurs twice)
becomes 1:30AM EDT, the first occurence." becomes 1:30AM EDT, the first occurrence."
(ical:with-component observance (ical:with-component observance
((ical:tzoffsetfrom :value offset-from) ((ical:tzoffsetfrom :value offset-from)
(ical:tzoffsetto :value offset-to)) (ical:tzoffsetto :value offset-to))