From 8545c99fb106636c194da739bd0ede43a9595580 Mon Sep 17 00:00:00 2001 From: Alan Arvelo Date: Tue, 4 Jun 2019 10:51:33 -0400 Subject: [PATCH] fixed small typo in utilities.md (#1785) --- docs/utilities.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/utilities.md b/docs/utilities.md index ff0d246c6..9a831e3ab 100644 --- a/docs/utilities.md +++ b/docs/utilities.md @@ -89,6 +89,6 @@ If you want to Escrow some funds, check out [`Escrow`](api/payment#escrow) and [ ### Misc -Want to check if an address is a contract? Use [`Address`](api/utils#address) and [`Address#isContract()`](api/utils#Address.isContract(address)). +Want to check if an address is a contract? Use [`Address`](api/utils#address) and [`Address.isContract()`](api/utils#Address.isContract(address)). Want to keep track of some numbers that increment by 1 every time you want another one? Check out [`Counter`](api/drafts#counter). This is especially useful for creating incremental ERC721 `tokenId`s like we did in the last section.