From 13e2132b69e0cc80cb46586f7cead6a130c2b4fa Mon Sep 17 00:00:00 2001 From: Brendan Graetz Date: Wed, 10 Jun 2020 00:18:38 +0800 Subject: [PATCH] docs: minor - spelling, grammar (#2273) --- contracts/token/ERC1155/README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/token/ERC1155/README.adoc b/contracts/token/ERC1155/README.adoc index 4a35f19b4..5e8dafa4c 100644 --- a/contracts/token/ERC1155/README.adoc +++ b/contracts/token/ERC1155/README.adoc @@ -4,7 +4,7 @@ This set of interfaces and contracts are all related to the https://eips.ethereu The EIP consists of three interfaces which fulfill different roles, found here as `IERC1155`, `IERC1155MetadataURI` and `IERC1155Receiver`. -`ERC1155` implement the mandatory `IERC1155` interface, as well as the optional extension `IERC1155MetadataURI` by relying on the substition mechanism to use the same URI for all token types, dramatically reducing gas costs. +`ERC1155` implements the mandatory `IERC1155` interface, as well as the optional extension `IERC1155MetadataURI`, by relying on the substitution mechanism to use the same URI for all token types, dramatically reducing gas costs. `ERC1155Holder` implements the `IERC1155Receiver` interface for contracts that can receive (and hold) ERC1155 tokens.