Skip to content

Commit 0319bdc

Browse files
committed
[gardening] Fix tab size inconsistency.
1 parent 529891c commit 0319bdc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

stdlib/public/core/IntegerParsing.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,10 @@ internal func _parseASCII<Result: FixedWidthInteger>(
8484

8585
@_alwaysEmitIntoClient
8686
internal func _parseASCII<S: StringProtocol, Result: FixedWidthInteger>(
87-
_ text: S, radix: Int
87+
_ text: S, radix: Int
8888
) -> Result? {
89-
var str = String(text)
90-
return str.withUTF8 { _parseASCII($0, radix: radix) }
89+
var str = String(text)
90+
return str.withUTF8 { _parseASCII($0, radix: radix) }
9191
}
9292

9393
extension FixedWidthInteger {

0 commit comments

Comments
 (0)