diff --git a/Sources/VSM/StateContainer/StateObserving.swift b/Sources/VSM/StateContainer/StateObserving.swift index c3bfa94..c425d07 100644 --- a/Sources/VSM/StateContainer/StateObserving.swift +++ b/Sources/VSM/StateContainer/StateObserving.swift @@ -28,7 +28,7 @@ public protocol StateObserving { /// - Parameter nextState: An async closure that returns the next state to render. func observeAsync(_ nextState: @escaping () async -> State) - /// Calls an async closure that returns a asynchronous sequence states. Those states are rendered by the view in the order received. + /// Calls an async closure that returns an asynchronous sequence of states. Those states are rendered by the view in the order received. /// - Parameter stateSequence: An async closure that returns a sequence of states. func observeAsync(_ stateSequence: @escaping () async -> SomeAsyncSequence) where SomeAsyncSequence.Element == State