Skip to content

Commit

Permalink
fix typo (#3268)
Browse files Browse the repository at this point in the history
  • Loading branch information
mltbnz authored Aug 2, 2024
1 parent 4864af0 commit 3f16c6c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Sources/ComposableArchitecture/SwiftUI/Alert.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import SwiftUI

@available(iOS 15, macOS 12, tvOS 15, watchOS 8, *)
extension View {
/// Displays an alert when then store's state becomes non-`nil`, and dismisses it when it becomes
/// Displays an alert when the store's state becomes non-`nil`, and dismisses it when it becomes
/// `nil`.
///
/// - Parameters:
Expand All @@ -14,7 +14,7 @@ extension View {
self._alert(store: store, state: { $0 }, action: { $0 })
}

/// Displays an alert when then store's state becomes non-`nil`, and dismisses it when it becomes
/// Displays an alert when the store's state becomes non-`nil`, and dismisses it when it becomes
/// `nil`.
///
/// - Parameters:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import SwiftUI

@available(iOS 15, macOS 12, tvOS 15, watchOS 8, *)
extension View {
/// Displays a dialog when then store's state becomes non-`nil`, and dismisses it when it becomes
/// Displays a dialog when the store's state becomes non-`nil`, and dismisses it when it becomes
/// `nil`.
///
/// - Parameters:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import SwiftUI

extension View {
/// Displays an action sheet when then store's state becomes non-`nil`, and dismisses it when it
/// Displays an action sheet when the store's state becomes non-`nil`, and dismisses it when it
/// becomes `nil`.
///
/// - Parameters:
Expand Down Expand Up @@ -37,7 +37,7 @@ extension View {
self.actionSheet(store: store, state: { $0 }, action: { $0 })
}

/// Displays an alert when then store's state becomes non-`nil`, and dismisses it when it becomes
/// Displays an alert when the store's state becomes non-`nil`, and dismisses it when it becomes
/// `nil`.
///
/// - Parameters:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import SwiftUI

extension View {
/// Displays a legacy alert when then store's state becomes non-`nil`, and dismisses it when it
/// Displays a legacy alert when the store's state becomes non-`nil`, and dismisses it when it
/// becomes `nil`.
///
/// - Parameters:
Expand All @@ -21,7 +21,7 @@ extension View {
self.legacyAlert(store: store, state: { $0 }, action: { $0 })
}

/// Displays a legacy alert when then store's state becomes non-`nil`, and dismisses it when it
/// Displays a legacy alert when the store's state becomes non-`nil`, and dismisses it when it
/// becomes `nil`.
///
/// - Parameters:
Expand Down

0 comments on commit 3f16c6c

Please sign in to comment.