Skip to content

Commit 029b2d9

Browse files
committed
Avoid past tense in documentation
1 parent a1f3d98 commit 029b2d9

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

Sources/Testing/Attachments/Attachment.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ private import _TestingInternals
2929
/// `.build/attachments` by default. Visual Studio Code reports the paths to
3030
/// individual attachments in its Tests Results panel.
3131
/// - When using Swift Package Manager's `swift test` command, you can pass the
32-
/// `--attachments-path` option and the testing library will save attachments
33-
/// to the specified directory.
32+
/// `--attachments-path` option. The testing library saves attachments to the
33+
/// specified directory.
3434
///
3535
/// @Metadata {
3636
/// @Available(Swift, introduced: 6.2)

Sources/Testing/Traits/AttachmentSavingTrait.swift

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
/// `.build/attachments` by default. Visual Studio Code reports the paths to
2525
/// individual attachments in its Tests Results panel.
2626
/// - When using Swift Package Manager's `swift test` command, you can pass the
27-
/// `--attachments-path` option and the testing library will save attachments
28-
/// to the specified directory.
27+
/// `--attachments-path` option. The testing library saves attachments to the
28+
/// specified directory.
2929
///
3030
/// If you add an instance of this trait type to a test, any attachments that
3131
/// test records are stored in memory until the test finishes running. The
@@ -238,8 +238,8 @@ extension Trait where Self == AttachmentSavingTrait {
238238
/// `.build/attachments` by default. Visual Studio Code reports the paths to
239239
/// individual attachments in its Tests Results panel.
240240
/// - When using Swift Package Manager's `swift test` command, you can pass
241-
/// the `--attachments-path` option and the testing library will save
242-
/// attachments to the specified directory.
241+
/// the `--attachments-path` option. The testing library saves attachments
242+
/// to the specified directory.
243243
///
244244
/// If you add this trait to a test, any attachments that test records are
245245
/// stored in memory until the test finishes running. The testing library then
@@ -276,8 +276,8 @@ extension Trait where Self == AttachmentSavingTrait {
276276
///  to `.build/attachments` by default. Visual Studio Code reports the paths
277277
///  to individual attachments in its Tests Results panel.
278278
/// - When using Swift Package Manager's `swift test` command, you can pass
279-
/// the `--attachments-path` option and the testing library will save
280-
/// attachments to the specified directory.
279+
/// the `--attachments-path` option. The testing library saves attachments
280+
/// to the specified directory.
281281
///
282282
/// If you add this trait to a test, any attachments that test records are
283283
/// stored in memory until the test finishes running. The testing library then
@@ -315,8 +315,8 @@ extension Trait where Self == AttachmentSavingTrait {
315315
///  to `.build/attachments` by default. Visual Studio Code reports the paths
316316
///  to individual attachments in its Tests Results panel.
317317
/// - When using Swift Package Manager's `swift test` command, you can pass
318-
/// the `--attachments-path` option and the testing library will save
319-
/// attachments to the specified directory.
318+
/// the `--attachments-path` option. The testing library saves attachments
319+
/// to the specified directory.
320320
///
321321
/// If you add this trait to a test, any attachments that test records are
322322
/// stored in memory until the test finishes running. The testing library then

0 commit comments

Comments
 (0)