fix(web): fix typos (#16466)

Found via codespell
This commit is contained in:
luzpaz
2025-03-01 17:51:50 -05:00
committed by GitHub
parent f13d13b2ea
commit 506d2d0f81
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -60,7 +60,7 @@ const observe = (key: HTMLElement | string, target: HTMLElement, properties: Int
(entries: IntersectionObserverEntry[]) => {
// This IntersectionObserver is limited to observing a single element, the one the
// action is attached to. If there are multiple entries, it means that this
// observer is being notified of multiple events that have occured quickly together,
// observer is being notified of multiple events that have occurred quickly together,
// and the latest element is the one we are interested in.
entries.sort((a, b) => a.time - b.time);