Skip to content

Commit

Permalink
Fix the typos in the tutorial reference (#2405)
Browse files Browse the repository at this point in the history
  • Loading branch information
zooxop authored Aug 24, 2023
1 parent adc61d9 commit 6dfdd18
Show file tree
Hide file tree
Showing 19 changed files with 20 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ final class CounterFeatureTests: XCTestCase {
// accessed from a test context:
//
// Location:
// TCATest/ContentView.swift:70
// TCATest/CounterFeature.swift:70
// Dependency:
// NumberFactClient
//
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import SwiftUI

struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
struct ContentView_Previews: PreviewProvider {
struct ContactsView_Previews: PreviewProvider {
static var previews: some View {
ContentView(
ContactsView(
store: Store(
initialState: ContactsFeature.State(
contacts: [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
struct ContentView: View {
struct ContactsView: View {
let store: StoreOf<ContactsFeature>

var body: some View {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
}

@Step {
Go to the `ContentView` that holds the view for the contacts list. Swap out the
Go to the `ContactsView` that holds the view for the contacts list. Swap out the
`NavigationStack` for a ``ComposableArchitecture/NavigationStackStore``. This is a type
specifically tuned for driving stacks from a ``ComposableArchitecture/Store``.
You hand it a store that is scoped down to ``ComposableArchitecture/StackState`` and
Expand Down

0 comments on commit 6dfdd18

Please sign in to comment.