From fff343c332bbf32bc662b0ba5b6322c15a504617 Mon Sep 17 00:00:00 2001 From: William Theesfeld Date: Fri, 5 Jun 2026 15:41:38 -0400 Subject: [PATCH] ; 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 --- lisp/calendar/icalendar-macs.el | 8 ++++---- lisp/calendar/icalendar-recur.el | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lisp/calendar/icalendar-macs.el b/lisp/calendar/icalendar-macs.el index b216d8dc141..43903ddd1d0 100644 --- a/lisp/calendar/icalendar-macs.el +++ b/lisp/calendar/icalendar-macs.el @@ -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. 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. 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. 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. 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. 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. 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 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. Within BODY, the symbols `value-node', `value-type', and `value' will be diff --git a/lisp/calendar/icalendar-recur.el b/lisp/calendar/icalendar-recur.el index b6c766962c9..fbbfb209ca7 100644 --- a/lisp/calendar/icalendar-recur.el +++ b/lisp/calendar/icalendar-recur.el @@ -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 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) -becomes 1:30AM EDT, the first occurence." +becomes 1:30AM EDT, the first occurrence." (ical:with-component observance ((ical:tzoffsetfrom :value offset-from) (ical:tzoffsetto :value offset-to))