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

chore: redo typo PR by mdqst #6597

Closed
wants to merge 2 commits into from
Closed
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/docs/explainers/explainer-oracle.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Oracles are functions that provide this feature.

An example usage for Oracles is proving something on-chain. For example, proving that the ETH-USDC quote was below a certain target at a certain block time. Or even making more complex proofs like proving the ownership of an NFT as an anonymous login method.

Another interesting use case is to defer expensive calculations to be made outside of the Noir program, and then constraining the result; similar to the use of [unconstrained functions](../noir/concepts//unconstrained.md).
Another interesting use case is to defer expensive calculations to be made outside of the Noir program, and then constraining the result; similar to the use of [unconstrained functions](../noir/concepts/unconstrained.md).

In short, anything that can be constrained in a Noir program but needs to be fetched from an external source is a great candidate to be used in oracles.

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/explainers/explainer-writing-noir.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ When writing firmware for a battery-powered microcontroller, you think of cpu cy

> Code is written to create applications that perform specific tasks within specific constraints

And these constraints differ depending on where the compiled code is execute.
And these constraints differ depending on where the compiled code is executed.

### The Ethereum Virtual Machine (EVM)

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/getting_started/noir_installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ The default backend for Noir (Barretenberg) doesn't provide Windows binaries at

Step 1: Follow the instructions [here](https://learn.microsoft.com/en-us/windows/wsl/install) to install and run WSL.

step 2: Follow the [Noirup instructions](#installing-noirup).
Step 2: Follow the [Noirup instructions](#installing-noirup).

## Setting up shell completions

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/getting_started/setting_up_shell_completions.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ If you have `oh-my-zsh` installed, you might already have a directory of automat
If not, first create it:

```bash
mkdir -p ~/.oh-my-zsh/completions`
mkdir -p ~/.oh-my-zsh/completions
```

Then copy the completion script to that directory:
Expand Down
Loading