From 59909d7024cebc7da7b9180740b83a7fa5df1083 Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Tue, 25 Jun 2024 13:03:48 +0300 Subject: [PATCH 1/3] fix plonk.sol --- src/data/plonk.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/plonk.sol b/src/data/plonk.sol index 2579282..5c6bc0d 100644 --- a/src/data/plonk.sol +++ b/src/data/plonk.sol @@ -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) } @@ -629,4 +629,4 @@ contract PlonkVerifier { } } -} \ No newline at end of file +} From cf815d5c1cfb8c0904d19a4d2aa8b5f410ea74b7 Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Tue, 25 Jun 2024 13:04:44 +0300 Subject: [PATCH 2/3] fix wasi.ts --- src/worker/wasi.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/worker/wasi.ts b/src/worker/wasi.ts index 1941894..1819ab0 100644 --- a/src/worker/wasi.ts +++ b/src/worker/wasi.ts @@ -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", }, From 79bbe0aef13be4d7cd80a49b58581f7685a7a1a8 Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Tue, 25 Jun 2024 13:07:02 +0300 Subject: [PATCH 3/3] fix syntax.tsx --- src/syntax.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/syntax.tsx b/src/syntax.tsx index f406548..fc90a92 100644 --- a/src/syntax.tsx +++ b/src/syntax.tsx @@ -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" },