Skip to content

[gardening] Fix formatting for some recently introduced file headers #1637

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 11, 2016
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
2 changes: 1 addition & 1 deletion stdlib/public/core/ArrayBufferProtocol.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//===--- ArrayBufferType.swift --------------------------------------------===//
//===--- ArrayBufferProtocol.swift ----------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
Expand Down
2 changes: 1 addition & 1 deletion stdlib/public/core/CollectionOfOne.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//===--- CollectionOfOne.swift - A Collection with one element --------===//
//===--- CollectionOfOne.swift - A Collection with one element ------------===//
//
// This source file is part of the Swift.org open source project
//
Expand Down
6 changes: 3 additions & 3 deletions stdlib/public/core/Index.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//===--- Index.swift - A position in a Collection ---------------------===//
//===--- Index.swift - A position in a Collection -------------------------===//
//
// This source file is part of the Swift.org open source project
//
Expand All @@ -15,7 +15,7 @@
//===----------------------------------------------------------------------===//

//===----------------------------------------------------------------------===//
//===--- ForwardIndex -------------------------------------------------===//
//===--- ForwardIndex -----------------------------------------------------===//

/// This protocol is an implementation detail of `ForwardIndex`; do
/// not use it directly.
Expand Down Expand Up @@ -249,7 +249,7 @@ extension ForwardIndex {
}

//===----------------------------------------------------------------------===//
//===--- BidirectionalIndex -------------------------------------------===//
//===--- BidirectionalIndex -----------------------------------------------===//


/// An index that can step backwards via application of its
Expand Down
2 changes: 1 addition & 1 deletion stdlib/public/core/IntegerArithmetic.swift.gyb
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public func ${op}= <T : _IntegerArithmetic>(lhs: inout T, rhs: T) {
}
% end

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

Expand Down
2 changes: 1 addition & 1 deletion stdlib/public/core/Mirror.swift
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ extension Mirror {
}
}

//===--- Legacy _Mirror Support ---------------------------------------===//
//===--- Legacy _Mirror Support -------------------------------------------===//
extension Mirror.DisplayStyle {
/// Construct from a legacy `_MirrorDisposition`
internal init?(legacy: _MirrorDisposition) {
Expand Down
2 changes: 1 addition & 1 deletion stdlib/public/core/Mirrors.swift.gyb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//===--- Mirrors.swift.gyb - Common _Mirror implementations -*-== swift -*-===//
//===--- Mirrors.swift.gyb - Common _Mirror implementations ---*- swift -*-===//
//
// This source file is part of the Swift.org open source project
//
Expand Down
2 changes: 1 addition & 1 deletion stdlib/public/core/RangeReplaceableCollection.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//===--- RangeReplaceableCollectionType.swift -----------------------------===//
//===--- RangeReplaceableCollection.swift ---------------------------------===//
//
// This source file is part of the Swift.org open source project
//
Expand Down
2 changes: 1 addition & 1 deletion stdlib/public/core/Repeat.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//===--- Repeated.swift - A Collection that repeats a value N times -------===//
//===--- Repeat.swift - A Collection that repeats a value N times ---------===//
//
// This source file is part of the Swift.org open source project
//
Expand Down
2 changes: 1 addition & 1 deletion test/Prototypes/GenericDispatch.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ print("testing...")
//===--- Think of this code as being "in the library" ---------------------===//
//===----------------------------------------------------------------------===//

//===--- F "base" protocol (like ForwardIndex) ------------------------===//
//===--- F "base" protocol (like ForwardIndex) ----------------------------===//

protocol F {
func successor() -> Self
Expand Down