Skip to content

Commit

Permalink
chore: redo typo PR by donatik27 (AztecProtocol#9693)
Browse files Browse the repository at this point in the history
Thanks donatik27 for
AztecProtocol#9688. Our policy is
to redo typo changes to dissuade metric farming. This is an automated
script.

---------

Co-authored-by: Noisy <[email protected]>
  • Loading branch information
AztecBot and donatik27 authored Nov 2, 2024
1 parent f5d8a07 commit f47cc17
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions avm-transpiler/src/instructions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use crate::opcodes::AvmOpcode;

/// A simple representation of an AVM instruction for the purpose
/// of generating an AVM bytecode from Brillig.
/// Note: this does structure not impose rules like "ADD instruction must have 3 operands"
/// Note: this structure does not impose rules like "ADD instruction must have 3 operands"
/// That job is left to the instruction decoder, not this thin transpiler.
pub struct AvmInstruction {
pub opcode: AvmOpcode,
Expand All @@ -18,7 +18,7 @@ pub struct AvmInstruction {
/// The 0th bit corresponds to an instruction's 0th offset arg, 1st to 1st, etc...
pub indirect: Option<AvmOperand>,

/// Some instructions have a destination xor input tag
/// Some instructions have a tag, its usage will depend on the instruction.
/// Its usage will depend on the instruction.
pub tag: Option<AvmTypeTag>,

Expand Down
12 changes: 6 additions & 6 deletions aztec-up/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ bash -i <(curl -s https://install.aztec.network)

That is all.

This will install into `~/.aztec/bin` a collection of scripts to help running aztec containers, and will update
a users `PATH` variable in their shell startup script so they can be found.
This will install into `~/.aztec/bin` a collection of scripts to help with running aztec containers, and will update
the user's `PATH` variable in their shell startup script so they can be found.

- `aztec` - The infrastructure container.
- `aztec-cli` - A command line tool for interacting with infrastructure.
- `aztec-nargo` - A build of `nargo` from `noir` that is guaranteed to be version aligned. Provides compiler, lsp and more.
- `aztec-cli` - A command-line tool for interacting with infrastructure.
- `aztec-nargo` - A build of `nargo` from `noir` that is guaranteed to be version-aligned. Provides compiler, lsp and more.
- `aztec-sandbox` - A wrapper around docker-compose that launches services needed for sandbox testing.
- `aztec-up` - A tool to upgrade the aztec toolchain to the latest, or specific versions.
- `aztec-builder` - A useful tool for projects to generate ABIs and update their dependencies.
Expand All @@ -22,10 +22,10 @@ After installed, you can use `aztec-up` to upgrade or install specific versions.
VERSION=master aztec-up
```

This will install the container built from master branch.
This will install the container built from the master branch.

```
VERSION=1.2.3 aztec-up
```

This will install tagged release version 1.2.3.
This will install the tagged release version 1.2.3.

0 comments on commit f47cc17

Please sign in to comment.