From d4757e3ce2bb3187d721edb25c8496fe8b8a08a0 Mon Sep 17 00:00:00 2001 From: aladdin <33091784+junbangg@users.noreply.github.com> Date: Tue, 2 Jul 2024 22:21:35 +0900 Subject: [PATCH] docs: fix typo in ifCaseLet documentation (#3216) --- .../Reducer/Reducers/IfCaseLetReducer.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/ComposableArchitecture/Reducer/Reducers/IfCaseLetReducer.swift b/Sources/ComposableArchitecture/Reducer/Reducers/IfCaseLetReducer.swift index 2513340d247b..13922df6d5db 100644 --- a/Sources/ComposableArchitecture/Reducer/Reducers/IfCaseLetReducer.swift +++ b/Sources/ComposableArchitecture/Reducer/Reducers/IfCaseLetReducer.swift @@ -35,7 +35,7 @@ extension Reducer { /// /// * It forces a specific order of operations for the child and parent features. It runs the /// child first, and then the parent. If the order was reversed, then it would be possible for - /// for the parent feature to change the case of the child enum, in which case the child + /// the parent feature to change the case of the child enum, in which case the child /// feature would not be able to react to that action. That can cause subtle bugs. /// /// * It automatically cancels all child effects when it detects the child enum case changes.