Skip to content

Commit

Permalink
v0.6.0-pre.6 (#527)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri authored Dec 28, 2023
1 parent dc64fb4 commit b811e5e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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,
Expand Down
3 changes: 1 addition & 2 deletions src/traits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -473,8 +473,7 @@ pub trait Concat: ConcatMixed<Self, MixedOutput = Self::Output> {
/// 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)
}
Expand Down

0 comments on commit b811e5e

Please sign in to comment.