Skip to content

Commit b555bfe

Browse files
author
Kenta Aikawa
authored
Fix minor document error (#1764)
1 parent fe5603e commit b555bfe

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)