Skip to content

Commit

Permalink
SyncUps: typos fixes (pointfreeco#3078)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinMoizard committed May 13, 2024
1 parent 1001325 commit 48b57d4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@
the other.

Luckily this is easy to fix, using a tool that comes with the Composable Architecture called
`bind(_:to:)`. It allows you synchronize two bindings so that when one changes it immediately
`bind(_:to:)`. It allows you to synchronize two bindings so that when one changes it immediately
changes the other. This is useful for dealing with SwiftUI property wrappers that only work
in the view, such as `@FocusState`.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
@Code(name: "App.swift", file: SyncUpDetailNavigation-01-code-0001.swift)
}

This feature's primary responsibility will to integrate all the features that can be
This feature's primary responsibility will be to integrate all the features that can be
presented in the navigation stack. Currently that is only the `SyncUpsList` feature, which
is always at the root of the stack, and the `SyncUpDetail` feature. Soon there will be more
features that can be presented in the stack, such as the record meeting feature and the past
Expand Down Expand Up @@ -59,7 +59,7 @@
and in the future there may be more.

For this reason it is best to do some upfront work to model a feature that can handle any
number of features on the stack. This works must like the `Destination` reducer we created
number of features on the stack. This works much like the `Destination` reducer we created
in <doc:EditingAndDeletingSyncUp>.

@Step {
Expand Down

0 comments on commit 48b57d4

Please sign in to comment.