Skip to content
Open
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
4 changes: 2 additions & 2 deletions src/data/plonk.sol
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ contract PlonkVerifier {
acc := mulmod(acc, mload(pIn), q)
mstore(pIn, inv)
}
// pIn points to first element, we just set it.
// pIn points to the first element, we just set it.
mstore(pIn, acc)
}

Expand Down Expand Up @@ -629,4 +629,4 @@ contract PlonkVerifier {
}

}
}
}
2 changes: 1 addition & 1 deletion src/syntax.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ monaco.languages.setMonarchTokensProvider("circom", {

// @ annotations.
// As an example, we emit a debugging log message on these tokens.
// Note: message are supressed during the first load -- change some lines to see them.
// Note: message are suppressed during the first load -- change some lines to see them.
[
/@\s*[a-zA-Z_\$][\w\$]*/,
{ token: "annotation", log: "annotation token: $0" },
Expand Down
2 changes: 1 addition & 1 deletion src/worker/wasi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ export async function runCircomspect(fileName = "main.circom") {
'P1003'
] as string[],

// Environment variables that are accesible to the WASI module
// Environment variables that are accessible to the WASI module
env: {
RUST_BACKTRACE: "1",
},
Expand Down