fix comment

This commit is contained in:
Gav Wood 2016-11-29 17:59:17 +01:00 committed by GitHub
parent 63c28253d8
commit d58905ae13
1 changed files with 1 additions and 1 deletions

View File

@ -522,7 +522,7 @@ pub trait Uint: Sized + Default + FromStr + From<u64> + fmt::Debug + fmt::Displa
fn byte(&self, index: usize) -> u8;
/// Convert to the sequence of bytes with a big endian
fn to_big_endian(&self, bytes: &mut[u8]);
/// Convert to a non-zero-prefixed hex representation prefixed by `0x`.
/// Convert to a non-zero-prefixed hex representation (not prefixed by `0x`).
fn to_hex(&self) -> String;
/// Create `Uint(10**n)`
fn exp10(n: usize) -> Self;