Skip to content

Commit 7ad1c0a

Browse files
Kenta Aikawap4checo
authored andcommitted
Fix minor document error (#1764)
(cherry picked from commit b555bfeac62c8c95cb54b002442bb8068aa99311)
1 parent 202c48e commit 7ad1c0a

File tree

1 file changed

+2
-2
lines changed
  • Sources/ComposableArchitecture/Documentation.docc/Articles

1 file changed

+2
-2
lines changed

Sources/ComposableArchitecture/Documentation.docc/Articles/Performance.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ struct Feature: ReducerProtocol {
243243
return EffectTask(value: .sharedComputation)
244244

245245
case let .textFieldChanged(text):
246-
state.description = = text
246+
state.description = text
247247
return EffectTask(value: .sharedComputation)
248248

249249
case .sharedComputation:
@@ -325,7 +325,7 @@ struct Feature: ReducerProtocol {
325325
return self.sharedComputation(state: &state)
326326

327327
case let .textFieldChanged(text):
328-
state.description = = text
328+
state.description = text
329329
return self.sharedComputation(state: &state)
330330
}
331331
}

0 commit comments

Comments
 (0)