diff --git a/Cargo.lock b/Cargo.lock index 0ff03fca..bc7a350e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -218,7 +218,7 @@ dependencies = [ [[package]] name = "crypto-bigint" -version = "0.6.0-pre.5" +version = "0.6.0-pre.6" dependencies = [ "bincode", "criterion", diff --git a/Cargo.toml b/Cargo.toml index e8385465..77ef8169 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crypto-bigint" -version = "0.6.0-pre.5" +version = "0.6.0-pre.6" description = """ Pure Rust implementation of a big integer library which has been designed from the ground-up for use in cryptographic applications. Provides constant-time, diff --git a/src/traits.rs b/src/traits.rs index e44dc0d2..cff9782c 100644 --- a/src/traits.rs +++ b/src/traits.rs @@ -473,8 +473,7 @@ pub trait Concat: ConcatMixed { /// Concatenated output: twice the width of `Self`. type Output: Integer; - /// Concatenate the two halves, with `self` as least significant and `hi` as the least - /// significant. + /// Concatenate the two halves, with `self` as least significant and `hi` as the most significant. fn concat(&self, hi: &Self) -> Self::Output { self.concat_mixed(hi) }