Skip to content

Commit 620ec5c

Browse files
authored
Fix a typo in Store docs (#998)
1 parent dd084dc commit 620ec5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/ComposableArchitecture/Store.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ public final class Store<State, Action> {
191191
/// ```swift
192192
/// // Application state made from local states.
193193
/// struct AppState { var login: LoginState, ... }
194-
/// struct AppAction { case login(LoginAction), ... }
194+
/// enum AppAction { case login(LoginAction), ... }
195195
///
196196
/// // A store that runs the entire application.
197197
/// let store = Store(

0 commit comments

Comments
 (0)