From 908303f8682c3823075f7b24cd2930b4d486eaec Mon Sep 17 00:00:00 2001 From: boforetech Date: Fri, 11 Oct 2024 10:39:21 +0900 Subject: [PATCH] chore: fix some comments (#238) Signed-off-by: beforetech --- SECURITY.md | 2 +- audits/token/202309-threat-model-preset-erc721.md | 2 +- clients/erc721-mint-by-id.ts | 2 +- clients/erc721.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/SECURITY.md b/SECURITY.md index 9dcd6998..8cc51c69 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -29,4 +29,4 @@ Note as well that the Solidity language itself only guarantees security updates ## Legal -Smart contracts are a nascent techology and carry a high level of technical risk and uncertainty. Immutable's zkEVM Contracts are made available under the Apache-2.0 License, which disclaims all warranties in relation to the project and which limits the liability of those that contribute and maintain the project, including Immutable. In your use of this project, you are solely responsible for any use of Immutable zkEVM Contracts and you assume all risks associated with any such use. This Security Policy in no way evidences or represents an on-going duty by any contributor, including Immutable, to correct any flaws or alert you to all or any of the potential risks of utilizing the project. +Smart contracts are a nascent technology and carry a high level of technical risk and uncertainty. Immutable's zkEVM Contracts are made available under the Apache-2.0 License, which disclaims all warranties in relation to the project and which limits the liability of those that contribute and maintain the project, including Immutable. In your use of this project, you are solely responsible for any use of Immutable zkEVM Contracts and you assume all risks associated with any such use. This Security Policy in no way evidences or represents an on-going duty by any contributor, including Immutable, to correct any flaws or alert you to all or any of the potential risks of utilizing the project. diff --git a/audits/token/202309-threat-model-preset-erc721.md b/audits/token/202309-threat-model-preset-erc721.md index 0a0e2e5a..3ea11eef 100644 --- a/audits/token/202309-threat-model-preset-erc721.md +++ b/audits/token/202309-threat-model-preset-erc721.md @@ -10,7 +10,7 @@ The ERC721 presets built by Immutable were done with the requirements of cheaper - Studios should be able to mint multiple tokens efficiently to multiple addresses. -- Studios should be able to to mint by token id out of order for metadata association. +- Studios should be able to mint by token id out of order for metadata association. - Minting should be restricted to addresses that were granted the `minter` role. diff --git a/clients/erc721-mint-by-id.ts b/clients/erc721-mint-by-id.ts index 224221b9..75cbd288 100644 --- a/clients/erc721-mint-by-id.ts +++ b/clients/erc721-mint-by-id.ts @@ -139,7 +139,7 @@ export class ERC721MintByIDClient { } /** - * @returns a booolean that tells whether an operator is approved by a given owner. + * @returns a boolean that tells whether an operator is approved by a given owner. */ public async isApprovedForAll( provider: Provider, diff --git a/clients/erc721.ts b/clients/erc721.ts index 95a85f04..0bb1cac9 100644 --- a/clients/erc721.ts +++ b/clients/erc721.ts @@ -168,7 +168,7 @@ export class ERC721Client { } /** - * @returns a booolean that tells whether an operator is approved by a given owner. + * @returns a boolean that tells whether an operator is approved by a given owner. */ public async isApprovedForAll( provider: Provider,