Skip to content

Commit

Permalink
Fix typo in SwiftPrivate.swift, "hexidecimal" -> "hexadecimal"
Browse files Browse the repository at this point in the history
  • Loading branch information
jandrewstre committed Dec 4, 2015
1 parent 51a9cea commit c7710b7
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 c7710b7

Please sign in to comment.