Skip to content

Commit b9987e8

Browse files
committed
Merge pull request #133 from jandrewstre/patch-4
Fix typo in SwiftPrivate.swift, "hexidecimal" -> "hexadecimal"
2 parents 149d474 + c7710b7 commit b9987e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/private/SwiftPrivate/SwiftPrivate.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
import SwiftShims
1414

15-
/// Convert the given numeric value to a hexidecimal string.
15+
/// Convert the given numeric value to a hexadecimal string.
1616
public func asHex<T : IntegerType>(x: T) -> String {
1717
return "0x" + String(x.toIntMax(), radix: 16)
1818
}

0 commit comments

Comments
 (0)