From 34aa076ef8a27f14cb1b61b9ca9d045696e61c88 Mon Sep 17 00:00:00 2001 From: "fuder.eth" <139509124+vtjl10@users.noreply.github.com> Date: Sat, 14 Dec 2024 16:00:11 +0100 Subject: [PATCH 1/3] Update interopmessages.md --- docs/src/specs/interop/interopmessages.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/specs/interop/interopmessages.md b/docs/src/specs/interop/interopmessages.md index f32724e0013d..572dfcea37d6 100644 --- a/docs/src/specs/interop/interopmessages.md +++ b/docs/src/specs/interop/interopmessages.md @@ -79,7 +79,7 @@ only if someone has first called `signup_open()` on chain A. ```solidity // Contract deployed on chain A. contract SignupManager { - public bytes32 sigup_open_msg_hash; + public bytes32 signup_open_msg_hash; function signup_open() onlyOwner { // We are open for business signup_open_msg_hash = InteropCenter(INTEROP_CENTER_ADDRESS).sendInteropMessage("We are open"); From afb8ae00b41fa4f7497c30741d2af1828793eaac Mon Sep 17 00:00:00 2001 From: "fuder.eth" <139509124+vtjl10@users.noreply.github.com> Date: Sat, 14 Dec 2024 16:01:32 +0100 Subject: [PATCH 2/3] Update 91_docker_and_ci.md --- docs/src/guides/advanced/91_docker_and_ci.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/guides/advanced/91_docker_and_ci.md b/docs/src/guides/advanced/91_docker_and_ci.md index 885d3155dd6c..77a8d2cc212a 100644 --- a/docs/src/guides/advanced/91_docker_and_ci.md +++ b/docs/src/guides/advanced/91_docker_and_ci.md @@ -4,7 +4,7 @@ How to efficiently debug CI issues locally. This document will be useful in case you struggle with reproducing some CI issues on your local machine. -In most cases, this is due to the fact that your local machine has some arifacts, configs, files that you might have set +In most cases, this is due to the fact that your local machine has some artifacts, configs, files that you might have set in the past, that are missing from the CI. ## Basic docker commands From 6f6fc2948ad3281948d2d99b661b7aa3aeb9a39f Mon Sep 17 00:00:00 2001 From: "fuder.eth" <139509124+vtjl10@users.noreply.github.com> Date: Sat, 14 Dec 2024 16:02:10 +0100 Subject: [PATCH 3/3] Update circuit_testing.md --- docs/src/specs/prover/circuit_testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/specs/prover/circuit_testing.md b/docs/src/specs/prover/circuit_testing.md index 159d908642ff..2671ebe8f7f8 100644 --- a/docs/src/specs/prover/circuit_testing.md +++ b/docs/src/specs/prover/circuit_testing.md @@ -38,7 +38,7 @@ Now the constraint system is ready! We can start the main part of the test! ![Contest(8).png](<./img/circuit_testing/Contest(8).png>) Here we have hard coded a secret key with its associated public key, and generate a signature. We will test our circuit -on these inputs! Next we “allocate” these inputs as witnessess: +on these inputs! Next we “allocate” these inputs as witnesses: ![Contest(9).png](<./img/circuit_testing/Contest(9).png>)