Skip to content

Commit

Permalink
Update contracts/NonFungibleToken.cdc
Browse files Browse the repository at this point in the history
  • Loading branch information
bjartek authored May 13, 2024
1 parent eba3b02 commit c8a9df9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/NonFungibleToken.cdc
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ access(all) contract interface NonFungibleToken: ViewResolver {
access(all) view fun borrowNFT(_ id: UInt64): &{NonFungibleToken.NFT}? {
post {
(result == nil) || (result?.id == 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"
}
}

Expand Down

0 comments on commit c8a9df9

Please sign in to comment.