From 72c0da9ae0b1617e4367d525346c5ee3948f7710 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Tue, 13 Feb 2024 01:13:11 +0900 Subject: [PATCH] Fix typo in AccessManaged.sol (#4890) --- contracts/access/manager/AccessManaged.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/access/manager/AccessManaged.sol b/contracts/access/manager/AccessManaged.sol index b5f45240a..41b21b0b7 100644 --- a/contracts/access/manager/AccessManaged.sol +++ b/contracts/access/manager/AccessManaged.sol @@ -46,7 +46,7 @@ abstract contract AccessManaged is Context, IAccessManaged { * ==== * Avoid adding this modifier to the https://docs.soliditylang.org/en/v0.8.20/contracts.html#receive-ether-function[`receive()`] * function or the https://docs.soliditylang.org/en/v0.8.20/contracts.html#fallback-function[`fallback()`]. These - * functions are the only execution paths where a function selector cannot be unambiguosly determined from the calldata + * functions are the only execution paths where a function selector cannot be unambiguously determined from the calldata * since the selector defaults to `0x00000000` in the `receive()` function and similarly in the `fallback()` function * if no calldata is provided. (See {_checkCanCall}). *