Skip to content

Commit a906201

Browse files
fix: correct type mismatch in LibVariable documentation example (#725)
Co-authored-by: DaniPopes <[email protected]>
1 parent 7480044 commit a906201

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/LibVariable.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ enum TypeKind {
4848
/// // string memory notANumber = config.get("important_number").toString();
4949
///
5050
/// // Retrieve a address array from the config.
51-
/// string[] memory admins = config.get("whitelisted_admins").toAddressArray();
51+
/// address[] memory admins = config.get("whitelisted_admins").toAddressArray();
5252
/// }
5353
/// }
5454
/// ```

0 commit comments

Comments
 (0)