From c7710b75b7a18fde4120023a44ce5ea82aa233c0 Mon Sep 17 00:00:00 2001 From: John Andrews Date: Thu, 3 Dec 2015 18:01:23 -0800 Subject: [PATCH] Fix typo in SwiftPrivate.swift, "hexidecimal" -> "hexadecimal" --- stdlib/private/SwiftPrivate/SwiftPrivate.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/private/SwiftPrivate/SwiftPrivate.swift b/stdlib/private/SwiftPrivate/SwiftPrivate.swift index c84516f5271c9..e0a2ff6462575 100644 --- a/stdlib/private/SwiftPrivate/SwiftPrivate.swift +++ b/stdlib/private/SwiftPrivate/SwiftPrivate.swift @@ -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(x: T) -> String { return "0x" + String(x.toIntMax(), radix: 16) }