Skip to content

Commit 26d73bf

Browse files
authored
Fix typos in README.md, IWalletProxy.sol, and OperatorAllowlist.sol (#261)
* fix typo README.md * fix typo README.md * fix typo README.md * fix typo IWalletProxy.sol * fix typo OperatorAllowlist.sol
1 parent a04f7ec commit 26d73bf

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

contracts/allowlist/IWalletProxy.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// SPDX-License-Identifier: Apache 2.0
33
pragma solidity 0.8.19;
44

5-
// Interface to retrieve the implemention stored inside the Proxy contract
5+
// Interface to retrieve the implementation stored inside the Proxy contract
66
/// Interface for Passport Wallet's proxy contract.
77
interface IWalletProxy {
88
// Returns the current implementation address used by the proxy contract

contracts/test/allowlist/OperatorAllowlist.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {ERC165} from "@openzeppelin/contracts/utils/introspection/ERC165.sol";
1111
// Interfaces
1212
import {IOperatorAllowlist} from "../../allowlist/IOperatorAllowlist.sol";
1313

14-
// Interface to retrieve the implemention stored inside the Proxy contract
14+
// Interface to retrieve the implementation stored inside the Proxy contract
1515
interface IProxy {
1616
// Returns the current implementation address used by the proxy contract
1717
// solhint-disable-next-line func-name-mixedcase

contracts/trading/seaport/zones/immutable-signed-zone/v2/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ flowchart LR
4444
The sequence of events is as follows:
4545

4646
1. The client makes a HTTP `POST .../fulfillment-data` request to the Immutable Orderbook, which will construct and sign an `extraData` payload to return to the client
47-
2. The client calls `fulfillAdvancedOrder` or `fulfillAvailableAdavancedOrders` on `ImmutableSeaport.sol` to fulfill an order
47+
2. The client calls `fulfillAdvancedOrder` or `fulfillAvailableAdvancedOrders` on `ImmutableSeaport.sol` to fulfill an order
4848
3. `ImmutableSeaport.sol` executes the fufilment by transferring items between parties
4949
4. `ImmutableSeaport.sol` calls `validateOrder` on `ImmutableSignedZoneV2.sol`, passing it the fulfilment execution details as well as the `extraData` parameter
5050
5. `ImmutableSignedZoneV2.sol` validates the fulfilment execution details using the `extraData` payload, reverting if expectations are not met
@@ -57,7 +57,7 @@ The contract was developed based on ImmutableSignedZone, with the addition of:
5757

5858
### ZoneAccessControl
5959

60-
The contract now uses a finer grained access control with role based access with the `ZoneAccessControl` interface, rather than the `Ownable` interface in the v1 contract. A seperate `zoneManager` roles is used to manage signers and an admin role used to control roles.
60+
The contract now uses a finer grained access control with role based access with the `ZoneAccessControl` interface, rather than the `Ownable` interface in the v1 contract. A separate `zoneManager` roles is used to manage signers and an admin role used to control roles.
6161

6262
### Support of SIP7 substandard 6
6363

test/trading/seaport/zones/immutable-signed-zone/v1/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ImmutableSignedZone is a implementation of the SIP-7 specification with substand
44

55
## E2E tests with signing server
66

7-
E2E tests will be handled in the server repository seperate to the contract.
7+
E2E tests will be handled in the server repository separate to the contract.
88

99
## Validate order unit tests
1010

0 commit comments

Comments
 (0)