Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: typos in documentation files #3387

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
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
2 changes: 1 addition & 1 deletion docs/src/guides/advanced/91_docker_and_ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/src/specs/interop/interopmessages.md
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down
2 changes: 1 addition & 1 deletion docs/src/specs/prover/circuit_testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>)

Expand Down