Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/workspace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,9 @@ jobs:
toolchain: 1.85.0
components: clippy
- run: cargo clippy --all-features -- -D warnings

typos:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: crate-ci/[email protected]
5 changes: 5 additions & 0 deletions .typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[files]
extend-exclude = [
".git/",
"ml-dsa/tests/examples/*",
]
2 changes: 1 addition & 1 deletion ml-dsa/src/module_lattice/algebra.rs
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ impl<F: Field> Neg for &NttPolynomial<F> {

/// An `NttVector` is a vector of polynomials from `T_q` of length `K`. NTT vectors can be
/// added and subtracted. If multiplication is defined for NTT polynomials, then NTT vectors
/// can be multiplied by NTT polynomials, and "multipled" with each other to produce a dot
/// can be multiplied by NTT polynomials, and "multiplied" with each other to produce a dot
/// product.
#[derive(Clone, Default, Debug, PartialEq)]
pub struct NttVector<F: Field, K: ArraySize>(pub Array<NttPolynomial<F>, K>);
Expand Down