Skip to content

Commit b811e5e

Browse files
authored
v0.6.0-pre.6 (#527)
1 parent dc64fb4 commit b811e5e

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "crypto-bigint"
3-
version = "0.6.0-pre.5"
3+
version = "0.6.0-pre.6"
44
description = """
55
Pure Rust implementation of a big integer library which has been designed from
66
the ground-up for use in cryptographic applications. Provides constant-time,

src/traits.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -473,8 +473,7 @@ pub trait Concat: ConcatMixed<Self, MixedOutput = Self::Output> {
473473
/// Concatenated output: twice the width of `Self`.
474474
type Output: Integer;
475475

476-
/// Concatenate the two halves, with `self` as least significant and `hi` as the least
477-
/// significant.
476+
/// Concatenate the two halves, with `self` as least significant and `hi` as the most significant.
478477
fn concat(&self, hi: &Self) -> Self::Output {
479478
self.concat_mixed(hi)
480479
}

0 commit comments

Comments
 (0)