Skip to content

Commit

Permalink
docs fix spelling issues (#329)
Browse files Browse the repository at this point in the history
* Update SECURITY.md

* Update test_shape_cs.rs

* Update bignat.rs
  • Loading branch information
nnsW3 committed Aug 22, 2024
1 parent cc55f0a commit d9a5130
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ If you believe you have found a security vulnerability in any Microsoft-owned re

Instead, please report them to the Microsoft Security Response Center (MSRC) at [https://msrc.microsoft.com/create-report](https://msrc.microsoft.com/create-report).

If you prefer to submit without logging in, send email to [secure@microsoft.com](mailto:secure@microsoft.com). If possible, encrypt your message with our PGP key; please download it from the [Microsoft Security Response Center PGP Key page](https://www.microsoft.com/en-us/msrc/pgp-key-msrc).
If you prefer to submit without logging in, send an email to [secure@microsoft.com](mailto:secure@microsoft.com). If possible, encrypt your message with our PGP key; please download it from the [Microsoft Security Response Center PGP Key page](https://www.microsoft.com/en-us/msrc/pgp-key-msrc).

You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Additional information can be found at [microsoft.com/msrc](https://www.microsoft.com/msrc).

Expand All @@ -38,4 +38,4 @@ We prefer all communications to be in English.

Microsoft follows the principle of [Coordinated Vulnerability Disclosure](https://www.microsoft.com/en-us/msrc/cvd).

<!-- END MICROSOFT SECURITY.MD BLOCK -->
<!-- END MICROSOFT SECURITY.MD BLOCK -->
2 changes: 1 addition & 1 deletion src/bellpepper/test_shape_cs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ where
result
}

/// Print all iputs and a detailed representation of each constraint.
/// Print all inputs and a detailed representation of each constraint.
#[allow(dead_code)]
pub fn pretty_print(&self) -> String {
let mut s = String::new();
Expand Down
2 changes: 1 addition & 1 deletion src/gadgets/nonnative/bignat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ impl<Scalar: PrimeField> BigNat<Scalar> {
) -> Result<(), SynthesisError> {
self.enforce_limb_width_agreement(other, "equal_when_carried")?;

// We'll propegate carries over the first `n` limbs.
// We'll propagate carries over the first `n` limbs.
let n = min(self.limbs.len(), other.limbs.len());
let target_base = BigInt::from(1u8) << self.params.limb_width as u32;
let mut accumulated_extra = BigInt::from(0usize);
Expand Down

0 comments on commit d9a5130

Please sign in to comment.