From 51c4e725d186e3d126d4d8669acf7b651aedfe4a Mon Sep 17 00:00:00 2001 From: David Meister Date: Sun, 31 May 2026 08:17:51 +0000 Subject: [PATCH] Fix "initilize" -> "initialize" typo in V1/V2 interface NatSpec Closes #32. Both occurrences are NatSpec comments; no ABI / signature change. --- src/interface/ICloneableV2.sol | 2 +- src/interface/deprecated/ICloneableV1.sol | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/interface/ICloneableV2.sol b/src/interface/ICloneableV2.sol index 472123e..96e93b4 100644 --- a/src/interface/ICloneableV2.sol +++ b/src/interface/ICloneableV2.sol @@ -22,7 +22,7 @@ interface ICloneableV2 { /// `ICloneableV2` MUST take appropriate measures to ensure that functions /// called before initialize are safe to do so, or revert. /// - /// To be fully generic, `initilize` accepts `bytes` and so MUST ABI decode + /// To be fully generic, `initialize` accepts `bytes` and so MUST ABI decode /// within the initialize function. This allows a single factory to service /// arbitrary cloneable proxies but also erases the type of the /// initialization config from the ABI. As tooling will inevitably require diff --git a/src/interface/deprecated/ICloneableV1.sol b/src/interface/deprecated/ICloneableV1.sol index b016258..4f73bf6 100644 --- a/src/interface/deprecated/ICloneableV1.sol +++ b/src/interface/deprecated/ICloneableV1.sol @@ -16,7 +16,7 @@ interface ICloneableV1 { /// `ICloneableV1` MUST take appropriate measures to ensure that functions /// called before initialize are safe to do so, or revert. /// - /// To be fully generic `initilize` accepts `bytes` and so MUST ABI decode + /// To be fully generic `initialize` accepts `bytes` and so MUST ABI decode /// within the initialize function. This allows the factory to service /// arbitrary cloneable proxies but also erases the type of the /// initialization config from the ABI. One workaround is to emit an event