Skip to content

Commit d293687

Browse files
committed
Collapse adjacent blank lines
1 parent 6aea603 commit d293687

File tree

6 files changed

+0
-15
lines changed

6 files changed

+0
-15
lines changed

TSPL.docc/GuidedTour/GuidedTour.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1910,7 +1910,6 @@ let userID = await server.connect()
19101910
```
19111911
-->
19121912

1913-
19141913
## Protocols and Extensions
19151914

19161915
Use `protocol` to declare a protocol.

TSPL.docc/LanguageGuide/Concurrency.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1187,7 +1187,6 @@ you'll get compile-time error instead of introducing a bug.
11871187
then it behaves like code outside of the actor
11881188
because it could execute concurrently with other code that's part of the actor
11891189
1190-
11911190
exercise the log actor, using its client API to mutate state
11921191
11931192
::
@@ -1379,7 +1378,6 @@ preventing the type from being sendable.
13791378
The Main Actor
13801379
~~~~~~~~~~~~~~
13811380
1382-
13831381
- the main actor is kinda-sorta like the main thread
13841382
13851383
- use it when you have shared mutable state,
@@ -1416,7 +1414,6 @@ preventing the type from being sendable.
14161414
the TemperatureSensor example
14171415
might be a good example to expand when explaining them.
14181416
1419-
14201417
::
14211418
14221419
while let result = try await group.next() { }

TSPL.docc/LanguageGuide/Macros.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@ When the @OptionSet macro comes back, change both links back:
126126
[`OptionSet`]: https://developer.apple.com/documentation/swift/optionset-swift.protocol
127127
-->
128128

129-
130129
For comparison,
131130
here's what the expanded version of the `@OptionSet` macro looks like.
132131
You don't write this code,
@@ -636,7 +635,6 @@ The return-a-string APIs come from here
636635
https://github.com/swiftlang/swift-syntax/blob/main/Sources/SwiftSyntaxBuilder/Syntax%2BStringInterpolation.swift
637636
-->
638637

639-
640638
<!-- OUTLINE:
641639
642640
- Note:

TSPL.docc/LanguageGuide/OpaqueTypes.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -930,4 +930,3 @@ Licensed under Apache License v2.0 with Runtime Library Exception
930930
See https://swift.org/LICENSE.txt for license information
931931
See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
932932
-->
933-

TSPL.docc/ReferenceManual/Attributes.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,6 @@ including important milestones.
244244
}
245245
```
246246

247-
248247
<!--
249248
- test: `renamed1`
250249
@@ -266,7 +265,6 @@ including important milestones.
266265
typealias MyProtocol = MyRenamedProtocol
267266
```
268267

269-
270268
<!--
271269
- test: `renamed2`
272270
@@ -1781,7 +1779,6 @@ into code that calls the static methods of the result builder type:
17811779
var manualNumber = ArrayBuilder.buildExpression(10)
17821780
```
17831781

1784-
17851782
<!--
17861783
- test: `array-result-builder`
17871784
@@ -1949,7 +1946,6 @@ into code that calls the static methods of the result builder type:
19491946
}
19501947
```
19511948

1952-
19531949
<!--
19541950
- test: `array-result-builder`
19551951
@@ -2005,7 +2001,6 @@ into code that calls the static methods of the result builder type:
20052001
var manualOptional = ArrayBuilder.buildOptional(partialResult)
20062002
```
20072003

2008-
20092004
<!--
20102005
- test: `array-result-builder`
20112006
@@ -2125,7 +2120,6 @@ into code that calls the static methods of the result builder type:
21252120
)
21262121
```
21272122

2128-
21292123
<!--
21302124
- test: `array-result-builder`
21312125
@@ -2166,7 +2160,6 @@ into code that calls the static methods of the result builder type:
21662160
let manualArray = ArrayBuilder.buildArray(temporary)
21672161
```
21682162

2169-
21702163
<!--
21712164
- test: `array-result-builder`
21722165

TSPL.docc/ReferenceManual/Declarations.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -874,7 +874,6 @@ Any changes made within the function are not visible in the caller.
874874
To make an in-out parameter instead,
875875
you apply the `inout` parameter modifier.
876876

877-
878877
```swift
879878
func someFunction(a: inout Int) {
880879
a += 1

0 commit comments

Comments
 (0)