Skip to content

Commit ce15c88

Browse files
authored
Fixed minor typos in Shared State documentation (#3237)
* docs: fix typo in Explicit shared state documentation * docs: fix minor typo
1 parent a996565 commit ce15c88

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ dependency or using the shared state tools discussed in this article.
6969

7070
## Explicit shared state
7171

72-
This is the simplest kind of shared state to get start with. It allows you to share state amongst
72+
This is the simplest kind of shared state to get started with. It allows you to share state amongst
7373
many features without any persistence. The data is only held in memory, and will be cleared out the
7474
next time the application is run.
7575

@@ -95,7 +95,7 @@ struct ParentFeature {
9595
> information about how to initialize types that use `@Shared`.
9696
9797
Then suppose that this feature can present a child feature that wants access to this shared `count`
98-
value. It too would hold onto an `@Shared` property to a count:
98+
value. It too would hold onto a `@Shared` property to a count:
9999

100100
```swift
101101
@Reducer

0 commit comments

Comments
 (0)