From 5a5b649ec39ab8f0e84289e6333df5960d6ed65a Mon Sep 17 00:00:00 2001 From: 0age <37939117+0age@users.noreply.github.com> Date: Thu, 7 Nov 2024 11:18:42 -0800 Subject: [PATCH] Fix typos --- src/lib/ClaimHashFunctionCastLib.sol | 2 +- src/lib/ClaimHashLib.sol | 2 +- src/lib/ClaimProcessorFunctionCastLib.sol | 2 +- src/lib/ConsumerLib.sol | 2 +- src/lib/DomainLib.sol | 2 +- src/lib/HashLib.sol | 2 +- src/lib/IdLib.sol | 2 +- src/lib/MetadataLib.sol | 2 +- src/lib/RegistrationLib.sol | 2 +- src/lib/TransferFunctionCastLib.sol | 2 +- src/lib/ValidityLib.sol | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/lib/ClaimHashFunctionCastLib.sol b/src/lib/ClaimHashFunctionCastLib.sol index e318de9..6ee3577 100644 --- a/src/lib/ClaimHashFunctionCastLib.sol +++ b/src/lib/ClaimHashFunctionCastLib.sol @@ -54,7 +54,7 @@ import { /** * @title ClaimHashFunctionCastLib - * @notice Libray contract implementing function casts used throughout the codebase, + * @notice Library contract implementing function casts used throughout the codebase, * particularly as part of processing claims. The input function operates on a * function that takes some argument that differs from what is currently available. * The output function modifies one or more argument types so that they match the diff --git a/src/lib/ClaimHashLib.sol b/src/lib/ClaimHashLib.sol index e5a36ab..2d08076 100644 --- a/src/lib/ClaimHashLib.sol +++ b/src/lib/ClaimHashLib.sol @@ -76,7 +76,7 @@ import { HashLib } from "./HashLib.sol"; /** * @title ClaimHashLib - * @notice Libray contract implementing logic for deriving hashes as part of processing + * @notice Library contract implementing logic for deriving hashes as part of processing * claims, allocated transfers, and withdrawals. */ library ClaimHashLib { diff --git a/src/lib/ClaimProcessorFunctionCastLib.sol b/src/lib/ClaimProcessorFunctionCastLib.sol index 55d5b4d..859da17 100644 --- a/src/lib/ClaimProcessorFunctionCastLib.sol +++ b/src/lib/ClaimProcessorFunctionCastLib.sol @@ -54,7 +54,7 @@ import { /** * @title ClaimProcessorFunctionCastLib - * @notice Libray contract implementing function casts used in ClaimProcessorLogic. + * @notice Library contract implementing function casts used in ClaimProcessorLogic. * The input function operates on a function that takes some argument that differs * from what is currently available. The output function modifies one or more * argument types so that they match the arguments that are being used to call the diff --git a/src/lib/ConsumerLib.sol b/src/lib/ConsumerLib.sol index 6d18526..ab0ad6c 100644 --- a/src/lib/ConsumerLib.sol +++ b/src/lib/ConsumerLib.sol @@ -3,7 +3,7 @@ pragma solidity ^0.8.27; /** * @title ConsumerLib - * @notice Libray contract implementing logic for consuming bitpacked nonces scoped to + * @notice Library contract implementing logic for consuming bitpacked nonces scoped to * specific accounts and for querying for the state of those nonces. Note that only the * allocator nonce scope is currently in use in The Compact. */ diff --git a/src/lib/DomainLib.sol b/src/lib/DomainLib.sol index 509f0ab..32d6626 100644 --- a/src/lib/DomainLib.sol +++ b/src/lib/DomainLib.sol @@ -3,7 +3,7 @@ pragma solidity ^0.8.27; /** * @title DomainLib - * @notice Libray contract implementing logic for deriving domain hashes. + * @notice Library contract implementing logic for deriving domain hashes. */ library DomainLib { /// @dev `keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)")`. diff --git a/src/lib/HashLib.sol b/src/lib/HashLib.sol index fde0eb3..7313fae 100644 --- a/src/lib/HashLib.sol +++ b/src/lib/HashLib.sol @@ -31,7 +31,7 @@ import { TransferFunctionCastLib } from "./TransferFunctionCastLib.sol"; /** * @title HashLib - * @notice Libray contract implementing logic for deriving hashes as part of processing + * @notice Library contract implementing logic for deriving hashes as part of processing * claims, allocated transfers, and withdrawals, including deriving typehashes when * witness data is utilized and qualification hashes when claims have been qualified by * the allocator. diff --git a/src/lib/IdLib.sol b/src/lib/IdLib.sol index 57905c1..83d2db8 100644 --- a/src/lib/IdLib.sol +++ b/src/lib/IdLib.sol @@ -13,7 +13,7 @@ import { EfficientHashLib } from "solady/utils/EfficientHashLib.sol"; /** * @title IdLib - * @notice Libray contract implementing logic for deriving IDs for allocators and + * @notice Library contract implementing logic for deriving IDs for allocators and * for resource locks, converting between various IDs, and for extracting details * related to those IDs. This includes logic for registering allocators and for * assigning them an allocator ID. diff --git a/src/lib/MetadataLib.sol b/src/lib/MetadataLib.sol index 074e937..f6baadd 100644 --- a/src/lib/MetadataLib.sol +++ b/src/lib/MetadataLib.sol @@ -11,7 +11,7 @@ import { MetadataReaderLib } from "solady/utils/MetadataReaderLib.sol"; /** * @title MetadataLib - * @notice Libray contract implementing logic for deriving and displaying + * @notice Library contract implementing logic for deriving and displaying * ERC6909 metadata as well as metadata specific to various underlying tokens. */ library MetadataLib { diff --git a/src/lib/RegistrationLib.sol b/src/lib/RegistrationLib.sol index 9b397f2..20f37fb 100644 --- a/src/lib/RegistrationLib.sol +++ b/src/lib/RegistrationLib.sol @@ -8,7 +8,7 @@ import { IdLib } from "./IdLib.sol"; /** * @title RegistrationLib - * @notice Libray contract implementing logic for registering compact claim hashes + * @notice Library contract implementing logic for registering compact claim hashes * and typehashes and querying for whether given claim hashes and typehashes have * been registered. */ diff --git a/src/lib/TransferFunctionCastLib.sol b/src/lib/TransferFunctionCastLib.sol index 4db7b1f..38e4277 100644 --- a/src/lib/TransferFunctionCastLib.sol +++ b/src/lib/TransferFunctionCastLib.sol @@ -7,7 +7,7 @@ import { TransferComponent, SplitByIdComponent } from "../types/Components.sol"; /** * @title TransferFunctionCastLib - * @notice Libray contract implementing function casts used in TransferLogic as well as + * @notice Library contract implementing function casts used in TransferLogic as well as * in HashLib. The input function operates on a function that takes some argument that * differs from what is currently available. The output function modifies one or more * argument types so that they match the arguments that are being used to call the diff --git a/src/lib/ValidityLib.sol b/src/lib/ValidityLib.sol index d88ec1e..6a765e5 100644 --- a/src/lib/ValidityLib.sol +++ b/src/lib/ValidityLib.sol @@ -11,7 +11,7 @@ import { SignatureCheckerLib } from "solady/utils/SignatureCheckerLib.sol"; /** * @title ValidityLib - * @notice Libray contract implementing logic for validating expirations, + * @notice Library contract implementing logic for validating expirations, * signatures, nonces (including consuming unused nonces), and token addresses. */ library ValidityLib {