From 7a2eb8b35886fe272708ad8ac74b4e5d9883d147 Mon Sep 17 00:00:00 2001 From: teenager-ETH Date: Sun, 15 Dec 2024 16:08:04 +0100 Subject: [PATCH 1/3] typo-Update 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" }, From bd3a141c94f37e7b4f92f4dc32342920c78cea72 Mon Sep 17 00:00:00 2001 From: teenager-ETH Date: Sun, 15 Dec 2024 16:09:15 +0100 Subject: [PATCH 2/3] typo Update groth16.sol --- src/data/groth16.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/groth16.sol b/src/data/groth16.sol index 707b2b5..75fdf62 100644 --- a/src/data/groth16.sol +++ b/src/data/groth16.sol @@ -7,7 +7,7 @@ // 2019 OKIMS // ported to solidity 0.6 // fixed linter warnings -// added requiere error messages +// added require error messages // // // SPDX-License-Identifier: GPL-3.0 From da2a73d9e8e64a2823cfe3adec0c6d51c9246f89 Mon Sep 17 00:00:00 2001 From: teenager-ETH Date: Sun, 15 Dec 2024 16:09:52 +0100 Subject: [PATCH 3/3] typo Update 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..6a36f51 100644 --- a/src/data/plonk.sol +++ b/src/data/plonk.sol @@ -142,7 +142,7 @@ contract PlonkVerifier { let pAux := mload(0x40) // Point to the next free position let pIn := pVals - let lastPIn := add(pVals, mul(n, 32)) // Read n elemnts + let lastPIn := add(pVals, mul(n, 32)) // Read n elements let acc := mload(pIn) // Read the first element pIn := add(pIn, 32) // Point to the second element let inv @@ -629,4 +629,4 @@ contract PlonkVerifier { } } -} \ No newline at end of file +}