From 08cdf5fde41d533aa077fd0bed0bb718c0c32723 Mon Sep 17 00:00:00 2001 From: Kevin Ballard Date: Thu, 23 May 2013 23:46:45 -0700 Subject: Update for current incoming --- hex.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hex.rs') diff --git a/hex.rs b/hex.rs index abd62e8a..380369f4 100644 --- a/hex.rs +++ b/hex.rs @@ -23,7 +23,7 @@ pub trait ToHex { impl<'self> ToHex for &'self [u8] { fn to_hex(&self) -> ~str { - let chars = str::to_chars(~"0123456789ABCDEF"); + let chars = str::to_chars("0123456789ABCDEF"); let mut s = ~""; -- cgit v1.2.3