Skip to content

Commit 60fbb66

Browse files
authored
Fix minor typo (#671)
* Fix typo: iff → if * Add missing `>`
1 parent b809888 commit 60fbb66

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Sources/ComposableArchitecture/Internal/Breakpoint.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// Raises a debug breakpoint iff a debugger is attached.
1+
/// Raises a debug breakpoint if a debugger is attached.
22
@inline(__always) func breakpoint(_ message: @autoclosure () -> String = "") {
33
#if DEBUG
44
// https://github.com/bitstadium/HockeySDK-iOS/blob/c6e8d1e940299bec0c0585b1f7b86baf3b17fc82/Classes/BITHockeyHelper.m#L346-L370

Sources/ComposableArchitecture/SwiftUI/Binding.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ extension Reducer {
209209
/// the ``binding(action:)`` method:
210210
///
211211
/// ```swift
212-
/// let settingsReducer = Reducer<SettingsState, SettingsAction, SettingsEnvironment {
212+
/// let settingsReducer = Reducer<SettingsState, SettingsAction, SettingsEnvironment> {
213213
/// ...
214214
/// }
215215
/// .binding(action: /SettingsAction.binding)

0 commit comments

Comments
 (0)