Skip to content

Commit 4c153f6

Browse files
committed
Merge pull request #230 from wxxsw/whitespaces
Erase redundant whitespaces.
2 parents 43e4741 + 2003024 commit 4c153f6

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

stdlib/public/core/BridgeObjectiveC.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ public func _isBridgedVerbatimToObjectiveC<T>(_: T.Type) -> Bool {
300300

301301
/// Retrieve the Objective-C type to which the given type is bridged.
302302
@warn_unused_result
303-
public func _getBridgedObjectiveCType<T>(_: T.Type) -> Any.Type? {
303+
public func _getBridgedObjectiveCType<T>(_: T.Type) -> Any.Type? {
304304
if _fastPath(_isClassOrObjCExistential(T.self)) {
305305
return T.self
306306
}

stdlib/public/core/Character.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ public struct Character :
6666
isASCII: Builtin.Int1) {
6767
self = Character(
6868
String(
69-
_builtinExtendedGraphemeClusterLiteral: start,
70-
byteSize: byteSize,
69+
_builtinExtendedGraphemeClusterLiteral: start,
70+
byteSize: byteSize,
7171
isASCII: isASCII))
7272
}
7373

stdlib/public/core/Existential.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// Unavailable; use `AnyGenerator<T>` instead.
2222
@available(*, unavailable, renamed="AnyGenerator")
23-
public struct GeneratorOf<T> {}
23+
public struct GeneratorOf<T> {}
2424

2525
/// Unavailable; use `AnySequence<T>` instead.
2626
@available(*, unavailable, renamed="AnySequence")

stdlib/public/core/StringLegacy.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ extension String {
111111
}
112112

113113
/// Create an instance representing `v` in base 10.
114-
public init<T : UnsignedIntegerType>(_ v: T) {
114+
public init<T : UnsignedIntegerType>(_ v: T) {
115115
self = _uint64ToString(v.toUIntMax())
116116
}
117117

@@ -133,7 +133,7 @@ extension String {
133133
/// starting with `a` if `uppercase` is `false` or `A` otherwise.
134134
public init<T : UnsignedIntegerType>(
135135
_ v: T, radix: Int, uppercase: Bool = false
136-
) {
136+
) {
137137
_precondition(radix > 1, "Radix must be greater than 1")
138138
self = _uint64ToString(
139139
v.toUIntMax(), radix: Int64(radix), uppercase: uppercase)

0 commit comments

Comments
 (0)