Skip to content

Commit

Permalink
chore(deps): bump crate-ci/typos from 1.19.0 to 1.20.7 (#549)
Browse files Browse the repository at this point in the history
* chore(deps): bump crate-ci/typos from 1.19.0 to 1.20.7

Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.19.0 to 1.20.7.
- [Release notes](https://github.com/crate-ci/typos/releases)
- [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md)
- [Commits](crate-ci/typos@v1.19.0...v1.20.7)

---
updated-dependencies:
- dependency-name: crate-ci/typos
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* typos

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: MRain <[email protected]>
  • Loading branch information
dependabot[bot] and mrain committed Apr 11, 2024
1 parent 4a2e7b7 commit d973a29
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
name: Enable Rust Caching

- name: Spell Check
uses: crate-ci/typos@v1.19.0
uses: crate-ci/typos@v1.20.7

- name: Format Check
run: cargo +nightly fmt -- --check
Expand Down
6 changes: 3 additions & 3 deletions plonk/src/circuit/transcript.rs
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ mod tests {

let label = "testing".as_ref();

let mut transcipt_var = RescueTranscriptVar::new(&mut circuit);
let mut transcript_var = RescueTranscriptVar::new(&mut circuit);
let mut transcript = RescueTranscript::<F>::new(label);

for _ in 0..10 {
Expand All @@ -264,14 +264,14 @@ mod tests {

transcript.append_message(label, msg.as_bytes()).unwrap();

transcipt_var
transcript_var
.append_message_vars(label, &message_vars)
.unwrap();
}

let challenge = transcript.get_and_append_challenge::<E>(label).unwrap();

let challenge_var = transcipt_var
let challenge_var = transcript_var
.get_and_append_challenge_var::<E>(label, &mut circuit)
.unwrap();

Expand Down
2 changes: 1 addition & 1 deletion primitives/src/merkle_tree/append_only.rs
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ mod mt_tests {
mt.update(BigUint::from(32u64), F::from(16u64)).unwrap();
// forget a leave
mt.forget(BigUint::from(123u64)).expect_ok().unwrap();
// Check that new insertion and forgeting are reflected
// Check that new insertion and forgetting are reflected
assert_eq!(
mt.into_iter().collect::<Vec<_>>(),
[
Expand Down
2 changes: 1 addition & 1 deletion primitives/src/merkle_tree/hasher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ pub type GenericHasherMerkleTree<H, E, I, const ARITY: usize> =

/// Convenience trait and blanket impl for downstream trait bounds.
///
/// Useful for downstream code that's generic ofer [`Digest`] hasher `H`.
/// Useful for downstream code that's generic offer [`Digest`] hasher `H`.
///
/// # Example
///
Expand Down

0 comments on commit d973a29

Please sign in to comment.