From ec00f17886a9bc917411b711df6005010234a60b Mon Sep 17 00:00:00 2001 From: Noisy <125606576+donatik27@users.noreply.github.com> Date: Sat, 2 Nov 2024 16:43:33 +0100 Subject: [PATCH 1/3] Update README.md --- aztec-up/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/aztec-up/README.md b/aztec-up/README.md index 285ed9c9070..d3cc08d04fd 100644 --- a/aztec-up/README.md +++ b/aztec-up/README.md @@ -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. @@ -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. From fba3e8e24da6b9831aad89df14d4f16a4e82d6ef Mon Sep 17 00:00:00 2001 From: Noisy <125606576+donatik27@users.noreply.github.com> Date: Sat, 2 Nov 2024 16:57:41 +0100 Subject: [PATCH 2/3] Update instructions.rs --- avm-transpiler/src/instructions.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/avm-transpiler/src/instructions.rs b/avm-transpiler/src/instructions.rs index 74318b0b5ac..087c71120ed 100644 --- a/avm-transpiler/src/instructions.rs +++ b/avm-transpiler/src/instructions.rs @@ -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, @@ -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, - /// Some instructions have a destination xor input tag + /// Some instructions have a destination or input tag /// Its usage will depend on the instruction. pub tag: Option, From b5690e343185e6272a74a803c8440d1930a86e60 Mon Sep 17 00:00:00 2001 From: AztecBot Date: Sat, 2 Nov 2024 15:34:08 -0400 Subject: [PATCH 3/3] Update instructions.rs --- avm-transpiler/src/instructions.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/avm-transpiler/src/instructions.rs b/avm-transpiler/src/instructions.rs index 087c71120ed..aaadc278ffa 100644 --- a/avm-transpiler/src/instructions.rs +++ b/avm-transpiler/src/instructions.rs @@ -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, - /// Some instructions have a destination or input tag + /// Some instructions have a tag, its usage will depend on the instruction. /// Its usage will depend on the instruction. pub tag: Option,