From ea1852a22ebf5213b8620be3f66717848b3cd86b Mon Sep 17 00:00:00 2001 From: GarmashAlex Date: Wed, 10 Sep 2025 09:09:28 +0300 Subject: [PATCH] fix: correct type mismatch in LibVariable documentation example --- src/LibVariable.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LibVariable.sol b/src/LibVariable.sol index c46b1532..d9697873 100644 --- a/src/LibVariable.sol +++ b/src/LibVariable.sol @@ -48,7 +48,7 @@ enum TypeKind { /// // string memory notANumber = config.get("important_number").toString(); /// /// // Retrieve a address array from the config. -/// string[] memory admins = config.get("whitelisted_admins").toAddressArray(); +/// address[] memory admins = config.get("whitelisted_admins").toAddressArray(); /// } /// } /// ```