Skip to content

Commit 8a47531

Browse files
committed
Address feedback
1 parent 34e4db2 commit 8a47531

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

Documentation/Proposals/NNNN-ranged-confirmations.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -177,12 +177,7 @@ this value is `Int`.
177177

178178
## Acknowledgments
179179

180-
If significant changes or improvements suggested by members of the community
181-
were incorporated into the proposal as it developed, take a moment here to thank
182-
them for their contributions. This is a collaborative process, and everyone's
183-
input should receive recognition!
184-
185-
Generally, you should not acknowledge anyone who is listed as a co-author.
180+
Thanks to the testing team for their help preparing this pitch!
186181

187182
[^1]: In the future, this type will change to
188183
`any RangeExpression<Int> & Sendable`. Compiler support is required

Sources/Testing/Issues/Confirmation.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ public func confirmation<R>(
201201
}
202202

203203
/// An overload of ``confirmation(_:expectedCount:isolation:sourceLocation:_:)-6bkl6``
204-
/// that handles the unbounded range operator (`...`).
204+
/// that handles the partial-range-through operator (`...n`).
205205
///
206206
/// This overload is necessary because the lower bound of `PartialRangeThrough`
207207
/// is ambiguous: does it start at `0` or `1`? Test authors should specify a
@@ -217,7 +217,7 @@ public func confirmation<R>(
217217
}
218218

219219
/// An overload of ``confirmation(_:expectedCount:isolation:sourceLocation:_:)-6bkl6``
220-
/// that handles the unbounded range operator (`...`).
220+
/// that handles the partial-range-up-to operator (`..<n`).
221221
///
222222
/// This overload is necessary because the lower bound of `PartialRangeUpTo` is
223223
/// ambiguous: does it start at `0` or `1`? Test authors should specify a

0 commit comments

Comments
 (0)