Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Sources/Testing/Testing.docc/AddingTags.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@ declared in different files, modules, or other contexts, the testing library
treats them as equivalent.

If it's important for a tag to be distinguished from similar tags declared
elsewhere in a package or project (or its dependencies), use
[reverse-DNS naming](https://en.wikipedia.org/wiki/Reverse_domain_name_notation)
elsewhere in a package or project (or its dependencies), use reverse-DNS naming
to create a unique Swift symbol name for your tag:

```swift
Expand Down
2 changes: 1 addition & 1 deletion Sources/Testing/Testing.docc/ParameterizedTesting.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ and so forth.
Assuming there are five cases in the `Food` enumeration, this test function
will, when run, be invoked 500 times (5 x 100) with every possible combination
of food and order size. These combinations are referred to as the collections'
[Cartesian product](https://en.wikipedia.org/wiki/Cartesian_product).
Cartesian product.

To avoid the combinatoric semantics shown above, use
[`zip()`](https://developer.apple.com/documentation/swift/zip(_:_:)):
Expand Down