From 408c68c020dc864c32eeaafc68579dd9c17fdc0e Mon Sep 17 00:00:00 2001 From: "Bjarte S. Karlsen" Date: Fri, 1 Dec 2023 15:45:10 +0100 Subject: [PATCH] Update contracts/NonFungibleToken-v2.cdc --- contracts/NonFungibleToken-v2.cdc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/NonFungibleToken-v2.cdc b/contracts/NonFungibleToken-v2.cdc index cf5396c..4884b11 100644 --- a/contracts/NonFungibleToken-v2.cdc +++ b/contracts/NonFungibleToken-v2.cdc @@ -206,7 +206,7 @@ access(all) contract NonFungibleToken { access(all) view fun borrowNFTSafe(id: UInt64): &{NonFungibleToken.NFT}? { post { (result == nil) || (result?.getID() == id): - "Cannot borrow NFT reference: The ID of the returned reference does not match the ID that was specified" + "Cannot borrow NFT reference: The ID of the returned reference does not match the ID that was specified" } return nil }