From de5f2dc5209a01521c5f4ac512ff0a2e4465666e Mon Sep 17 00:00:00 2001 From: Ann Wagner Date: Mon, 3 Feb 2025 04:15:53 -0600 Subject: [PATCH] fix: consistent spelling: "behavior" (#5478) Co-authored-by: Hadrien Croubois --- contracts/proxy/Clones.sol | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contracts/proxy/Clones.sol b/contracts/proxy/Clones.sol index 6b8d9cc6f..4050e2cc9 100644 --- a/contracts/proxy/Clones.sol +++ b/contracts/proxy/Clones.sol @@ -21,7 +21,7 @@ library Clones { error CloneArgumentsTooLong(); /** - * @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`. + * @dev Deploys and returns the address of a clone that mimics the behavior of `implementation`. * * This function uses the create opcode, which should never revert. */ @@ -54,7 +54,7 @@ library Clones { } /** - * @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`. + * @dev Deploys and returns the address of a clone that mimics the behavior of `implementation`. * * This function uses the create2 opcode and a `salt` to deterministically deploy * the clone. Using the same `implementation` and `salt` multiple times will revert, since @@ -158,7 +158,7 @@ library Clones { } /** - * @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation` with custom + * @dev Deploys and returns the address of a clone that mimics the behavior of `implementation` with custom * immutable arguments. These are provided through `args` and cannot be changed after deployment. To * access the arguments within the implementation, use {fetchCloneArgs}. *