Skip to content

Commit c815313

Browse files
authored
remove unnecessary references to external documentation (#499)
### Checklist: - [x] Code and documentation should follow the style of the [Style Guide](https://github.com/apple/swift-testing/blob/main/Documentation/StyleGuide.md). - [x] If public symbols are renamed or modified, DocC references should be updated.
1 parent 1427199 commit c815313

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Sources/Testing/Testing.docc/AddingTags.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,7 @@ declared in different files, modules, or other contexts, the testing library
5252
treats them as equivalent.
5353

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

5958
```swift

Sources/Testing/Testing.docc/ParameterizedTesting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ and so forth.
121121
Assuming there are five cases in the `Food` enumeration, this test function
122122
will, when run, be invoked 500 times (5 x 100) with every possible combination
123123
of food and order size. These combinations are referred to as the collections'
124-
[Cartesian product](https://en.wikipedia.org/wiki/Cartesian_product).
124+
Cartesian product.
125125

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

0 commit comments

Comments
 (0)