From eab39828949043329c42388e0c13d2fd6693d426 Mon Sep 17 00:00:00 2001 From: Benedicto Hong Date: Thu, 9 Jan 2025 09:38:17 +0900 Subject: [PATCH] Fix typos in Store.swift (#3547) Fix formatting by removing extra space before 'public'. --- Sources/ComposableArchitecture/Store.swift | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Sources/ComposableArchitecture/Store.swift b/Sources/ComposableArchitecture/Store.swift index 8527f27e117b..cbe492c3b2c6 100644 --- a/Sources/ComposableArchitecture/Store.swift +++ b/Sources/ComposableArchitecture/Store.swift @@ -331,8 +331,7 @@ public final class Store { } @_spi(Internals) - public - func scope( + public func scope( id: ScopeID?, state: ToState, action fromChildAction: @escaping (ChildAction) -> Action,