From 667bb9b5c3ae943c23910fa1dda9a0d1cd6354fd Mon Sep 17 00:00:00 2001 From: Hadrien Croubois Date: Fri, 11 Jul 2025 16:54:18 +0200 Subject: [PATCH] Clarify documentation for IAccessManager.canCall (#5795) --- contracts/access/manager/IAccessManager.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/access/manager/IAccessManager.sol b/contracts/access/manager/IAccessManager.sol index 2d73f37a4..af82849af 100644 --- a/contracts/access/manager/IAccessManager.sol +++ b/contracts/access/manager/IAccessManager.sol @@ -97,7 +97,7 @@ interface IAccessManager { * previously set delay (not zero), then the function should return false and the caller should schedule the operation * for future execution. * - * If `immediate` is true, the delay can be disregarded and the operation can be immediately executed, otherwise + * If `allowed` is true, the delay can be disregarded and the operation can be immediately executed, otherwise * the operation can be executed if and only if delay is greater than 0. * * NOTE: The IAuthority interface does not include the `uint32` delay. This is an extension of that interface that