Skip to content

Commit 958255d

Browse files
committed
Cross-apply edit: TSPL isn't in italics.
1 parent 62968b6 commit 958255d

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

stdlib/public/core/IntegerTypes.swift.gyb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ def operatorComment(operator, fixedWidth):
225225
/// // y == -35 (after overflow)
226226
///
227227
/// For more about arithmetic with overflow operators, see [Overflow
228-
/// Operators][overflow] in *[The Swift Programming Language][tspl]*.
228+
/// Operators][overflow] in [The Swift Programming Language][tspl].
229229
///
230230
/// [overflow]: https://docs.swift.org/swift-book/LanguageGuide/AdvancedOperators.html#ID37
231231
/// [tspl]: https://docs.swift.org/swift-book/
@@ -250,7 +250,7 @@ def operatorComment(operator, fixedWidth):
250250
/// // y == 245 (after overflow)
251251
///
252252
/// For more about arithmetic with overflow operators, see [Overflow
253-
/// Operators][overflow] in *[The Swift Programming Language][tspl]*.
253+
/// Operators][overflow] in [The Swift Programming Language][tspl].
254254
///
255255
/// [overflow]: https://docs.swift.org/swift-book/LanguageGuide/AdvancedOperators.html#ID37
256256
/// [tspl]: https://docs.swift.org/swift-book/
@@ -275,7 +275,7 @@ def operatorComment(operator, fixedWidth):
275275
/// // y == -12 (after overflow)
276276
///
277277
/// For more about arithmetic with overflow operators, see [Overflow
278-
/// Operators][overflow] in *[The Swift Programming Language][tspl]*.
278+
/// Operators][overflow] in [The Swift Programming Language][tspl].
279279
///
280280
/// [overflow]: https://docs.swift.org/swift-book/LanguageGuide/AdvancedOperators.html#ID37
281281
/// [tspl]: https://docs.swift.org/swift-book/
@@ -617,7 +617,7 @@ def assignmentOperatorComment(operator, fixedWidth):
617617
/// // y == -35 (after overflow)
618618
///
619619
/// For more about arithmetic with overflow operators, see [Overflow
620-
/// Operators][overflow] in *[The Swift Programming Language][tspl]*.
620+
/// Operators][overflow] in [The Swift Programming Language][tspl].
621621
///
622622
/// [overflow]: https://docs.swift.org/swift-book/LanguageGuide/AdvancedOperators.html#ID37
623623
/// [tspl]: https://docs.swift.org/swift-book/
@@ -644,7 +644,7 @@ def assignmentOperatorComment(operator, fixedWidth):
644644
/// // y == 245 (after overflow)
645645
///
646646
/// For more about arithmetic with overflow operators, see [Overflow
647-
/// Operators][overflow] in *[The Swift Programming Language][tspl]*.
647+
/// Operators][overflow] in [The Swift Programming Language][tspl].
648648
///
649649
/// [overflow]: https://docs.swift.org/swift-book/LanguageGuide/AdvancedOperators.html#ID37
650650
/// [tspl]: https://docs.swift.org/swift-book/
@@ -671,7 +671,7 @@ def assignmentOperatorComment(operator, fixedWidth):
671671
/// // y == -12 (after overflow)
672672
///
673673
/// For more about arithmetic with overflow operators, see [Overflow
674-
/// Operators][overflow] in *[The Swift Programming Language][tspl]*.
674+
/// Operators][overflow] in [The Swift Programming Language][tspl].
675675
///
676676
/// [overflow]: https://docs.swift.org/swift-book/LanguageGuide/AdvancedOperators.html#ID37
677677
/// [tspl]: https://docs.swift.org/swift-book/

stdlib/public/core/Integers.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3200,7 +3200,7 @@ extension FixedWidthInteger {
32003200
/// // y == -35 (after overflow)
32013201
///
32023202
/// For more about arithmetic with overflow operators, see [Overflow
3203-
/// Operators][overflow] in *[The Swift Programming Language][tspl]*.
3203+
/// Operators][overflow] in [The Swift Programming Language][tspl].
32043204
///
32053205
/// [overflow]: https://docs.swift.org/swift-book/LanguageGuide/AdvancedOperators.html#ID37
32063206
/// [tspl]: https://docs.swift.org/swift-book/
@@ -3230,7 +3230,7 @@ extension FixedWidthInteger {
32303230
/// // y == -35 (after overflow)
32313231
///
32323232
/// For more about arithmetic with overflow operators, see [Overflow
3233-
/// Operators][overflow] in *[The Swift Programming Language][tspl]*.
3233+
/// Operators][overflow] in [The Swift Programming Language][tspl].
32343234
///
32353235
/// [overflow]: https://docs.swift.org/swift-book/LanguageGuide/AdvancedOperators.html#ID37
32363236
/// [tspl]: https://docs.swift.org/swift-book/
@@ -3258,7 +3258,7 @@ extension FixedWidthInteger {
32583258
/// // y == 245 (after overflow)
32593259
///
32603260
/// For more about arithmetic with overflow operators, see [Overflow
3261-
/// Operators][overflow] in *[The Swift Programming Language][tspl]*.
3261+
/// Operators][overflow] in [The Swift Programming Language][tspl].
32623262
///
32633263
/// [overflow]: https://docs.swift.org/swift-book/LanguageGuide/AdvancedOperators.html#ID37
32643264
/// [tspl]: https://docs.swift.org/swift-book/
@@ -3288,7 +3288,7 @@ extension FixedWidthInteger {
32883288
/// // y == 245 (after overflow)
32893289
///
32903290
/// For more about arithmetic with overflow operators, see [Overflow
3291-
/// Operators][overflow] in *[The Swift Programming Language][tspl]*.
3291+
/// Operators][overflow] in [The Swift Programming Language][tspl].
32923292
///
32933293
/// [overflow]: https://docs.swift.org/swift-book/LanguageGuide/AdvancedOperators.html#ID37
32943294
/// [tspl]: https://docs.swift.org/swift-book/
@@ -3316,7 +3316,7 @@ extension FixedWidthInteger {
33163316
/// // y == -12 (after overflow)
33173317
///
33183318
/// For more about arithmetic with overflow operators, see [Overflow
3319-
/// Operators][overflow] in *[The Swift Programming Language][tspl]*.
3319+
/// Operators][overflow] in [The Swift Programming Language][tspl].
33203320
///
33213321
/// [overflow]: https://docs.swift.org/swift-book/LanguageGuide/AdvancedOperators.html#ID37
33223322
/// [tspl]: https://docs.swift.org/swift-book/
@@ -3346,7 +3346,7 @@ extension FixedWidthInteger {
33463346
/// // y == -12 (after overflow)
33473347
///
33483348
/// For more about arithmetic with overflow operators, see [Overflow
3349-
/// Operators][overflow] in *[The Swift Programming Language][tspl]*.
3349+
/// Operators][overflow] in [The Swift Programming Language][tspl].
33503350
///
33513351
/// [overflow]: https://docs.swift.org/swift-book/LanguageGuide/AdvancedOperators.html#ID37
33523352
/// [tspl]: https://docs.swift.org/swift-book/

0 commit comments

Comments
 (0)