Skip to content

Commit 32db894

Browse files
committed
Merge pull request #1637 from practicalswift/fix-some-file-headers
[gardening] Fix formatting for some recently introduced file headers
2 parents 79ea412 + 24ac89c commit 32db894

9 files changed

+11
-11
lines changed

stdlib/public/core/ArrayBufferProtocol.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===--- ArrayBufferType.swift --------------------------------------------===//
1+
//===--- ArrayBufferProtocol.swift ----------------------------------------===//
22
//
33
// This source file is part of the Swift.org open source project
44
//

stdlib/public/core/CollectionOfOne.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===--- CollectionOfOne.swift - A Collection with one element --------===//
1+
//===--- CollectionOfOne.swift - A Collection with one element ------------===//
22
//
33
// This source file is part of the Swift.org open source project
44
//

stdlib/public/core/Index.swift

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===--- Index.swift - A position in a Collection ---------------------===//
1+
//===--- Index.swift - A position in a Collection -------------------------===//
22
//
33
// This source file is part of the Swift.org open source project
44
//
@@ -15,7 +15,7 @@
1515
//===----------------------------------------------------------------------===//
1616

1717
//===----------------------------------------------------------------------===//
18-
//===--- ForwardIndex -------------------------------------------------===//
18+
//===--- ForwardIndex -----------------------------------------------------===//
1919

2020
/// This protocol is an implementation detail of `ForwardIndex`; do
2121
/// not use it directly.
@@ -249,7 +249,7 @@ extension ForwardIndex {
249249
}
250250

251251
//===----------------------------------------------------------------------===//
252-
//===--- BidirectionalIndex -------------------------------------------===//
252+
//===--- BidirectionalIndex -----------------------------------------------===//
253253

254254

255255
/// An index that can step backwards via application of its

stdlib/public/core/IntegerArithmetic.swift.gyb

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public func ${op}= <T : _IntegerArithmetic>(lhs: inout T, rhs: T) {
8080
}
8181
% end
8282

83-
//===--- SignedNumber -------------------------------------------------===//
83+
//===--- SignedNumber -----------------------------------------------------===//
8484
// A numeric type that supports abs(x), +x and -x
8585
//===----------------------------------------------------------------------===//
8686

stdlib/public/core/Mirror.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ extension Mirror {
435435
}
436436
}
437437

438-
//===--- Legacy _Mirror Support ---------------------------------------===//
438+
//===--- Legacy _Mirror Support -------------------------------------------===//
439439
extension Mirror.DisplayStyle {
440440
/// Construct from a legacy `_MirrorDisposition`
441441
internal init?(legacy: _MirrorDisposition) {

stdlib/public/core/Mirrors.swift.gyb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===--- Mirrors.swift.gyb - Common _Mirror implementations -*-== swift -*-===//
1+
//===--- Mirrors.swift.gyb - Common _Mirror implementations ---*- swift -*-===//
22
//
33
// This source file is part of the Swift.org open source project
44
//

stdlib/public/core/RangeReplaceableCollection.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===--- RangeReplaceableCollectionType.swift -----------------------------===//
1+
//===--- RangeReplaceableCollection.swift ---------------------------------===//
22
//
33
// This source file is part of the Swift.org open source project
44
//

stdlib/public/core/Repeat.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===--- Repeated.swift - A Collection that repeats a value N times -------===//
1+
//===--- Repeat.swift - A Collection that repeats a value N times ---------===//
22
//
33
// This source file is part of the Swift.org open source project
44
//

test/Prototypes/GenericDispatch.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ print("testing...")
2525
//===--- Think of this code as being "in the library" ---------------------===//
2626
//===----------------------------------------------------------------------===//
2727

28-
//===--- F "base" protocol (like ForwardIndex) ------------------------===//
28+
//===--- F "base" protocol (like ForwardIndex) ----------------------------===//
2929

3030
protocol F {
3131
func successor() -> Self

0 commit comments

Comments
 (0)