Skip to content

Commit

Permalink
Merge pull request swiftlang#133 from jandrewstre/patch-4
Browse files Browse the repository at this point in the history
Fix typo in SwiftPrivate.swift, "hexidecimal" -> "hexadecimal"
  • Loading branch information
cwillmor committed Dec 4, 2015
2 parents 149d474 + c7710b7 commit b9987e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/private/SwiftPrivate/SwiftPrivate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

import SwiftShims

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

0 comments on commit b9987e8

Please sign in to comment.