Skip to content

Commit

Permalink
chore: redo typo PR by leopardracer (#10444)
Browse files Browse the repository at this point in the history
  • Loading branch information
AztecBot authored Dec 6, 2024
1 parent be91d80 commit 3653c4c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build-system/scripts/build
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ if [ -d $ROOT_PATH/$PROJECT_DIR/terraform ]; then
popd
fi

# For each dependency, substitute references to the dependency in dockerfile, with the relevent built image uri.
# For each dependency, substitute references to the dependency in dockerfile, with the relevant built image uri.
# This is necessary vs pulling and retagging the image, as that doesn't work with buildx.
# We have to perform a bit of probing to determine which actual image we want to use.
# When we used buildx to create a multiarch image, there will be no images with "-$ARCH" suffixes (normalise this?).
Expand All @@ -91,7 +91,7 @@ for PARENT_REPO in $(query_manifest dependencies $REPOSITORY); do
fi
fi

# Substitute references to parent repo, with the relevent built image uri.
# Substitute references to parent repo, with the relevant built image uri.
DEPLOY_URI=aztecprotocol/$PARENT_REPO
PARENT_IMAGE_URI=$ECR_URL/$PARENT_REPO:$PARENT_IMAGE_TAG
sed -i "s#^FROM \\(.*\\)${DEPLOY_URI}\\( \|$\\)#FROM \\1${PARENT_IMAGE_URI}\\2#" $DOCKERFILE
Expand Down
4 changes: 2 additions & 2 deletions docs/src/components/TutorialCard/CardHeader/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { CSSProperties } from 'react'; // CSSProperties allows inline styling with better type checking.
import clsx from 'clsx'; // clsx helps manage conditional className names in a clean and concise manner.
const CardHeader = ({
className, // classNamees for the container card
className, // classNames for the container card
style, // Custom styles for the container card
children, // Content to be included within the card
textAlign,
Expand Down Expand Up @@ -41,4 +41,4 @@ const CardHeader = ({
</div>
);
}
export default CardHeader;
export default CardHeader;
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Noir can be used both in complex cloud-based backends and in user's smartphones,
Aztec Contracts leverage Noir to allow for the storage and execution of private information. Writing an Aztec Contract is as easy as writing Noir, and Aztec developers can easily interact with the network storage and execution through the [Aztec.nr](https://docs.aztec.network/developers/contracts/main) library.
</TabItem>
<TabItem value="Solidity Verifiers" label="Solidity Verifiers">
<img src={require("@site/static/img/solidity_verifier_ex.png").default} style={{display: "block", margin: "2rem auto"}} alt="Soliditry Verifier Example" />
<img src={require("@site/static/img/solidity_verifier_ex.png").default} style={{display: "block", margin: "2rem auto"}} alt="Solidity Verifier Example" />
Noir can auto-generate Solidity verifier contracts that verify Noir proofs. This allows for non-interactive verification of proofs containing private information in an immutable system. This feature powers a multitude of use-case scenarios, from P2P chess tournaments, to [Aztec Layer-2 Blockchain](https://docs.aztec.network/)
</TabItem>
<TabItem value="Full-Stack Development" label="Full-Stack Development">
Expand Down

0 comments on commit 3653c4c

Please sign in to comment.