From 74ccecd45e9fc7fd64ebfb9b548fed8d893fd24f Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Thu, 16 Apr 2026 14:29:55 -0700 Subject: [PATCH] CellActions: fix 'occured' -> 'occurred' in doc comments Two doc comments in Sources/FunctionalTableData/CellActions.swift (lines 233, 234) read '3D-touch occured'. Fixed to 'occurred'. Comment-only change. Signed-off-by: SAY-5 --- Sources/FunctionalTableData/CellActions.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/FunctionalTableData/CellActions.swift b/Sources/FunctionalTableData/CellActions.swift index e893a5b..9da7ac7 100644 --- a/Sources/FunctionalTableData/CellActions.swift +++ b/Sources/FunctionalTableData/CellActions.swift @@ -230,8 +230,8 @@ public struct CellActions { public typealias ShouldBeginMultiSelectGestureAction = () -> Bool public typealias DidBeginMultiSelectGestureAction = () -> Void /// Closure type that is executed when the user 3D-touches on a cell - /// - parameter cell: the cell in which the 3D-touch occured - /// - parameter point: The point where the 3D-touch occured, translated to the coordinate space of the cell + /// - parameter cell: the cell in which the 3D-touch occurred + /// - parameter point: The point where the 3D-touch occurred, translated to the coordinate space of the cell /// - parameter context: The instance of `UIViewControllerPreviewing` that is participating in the 3D-touch public typealias PreviewingViewControllerAction = (_ cell: UIView, _ point: CGPoint, _ context: UIViewControllerPreviewing) -> UIViewController?