diff --git a/contracts/community/FlovatarMarketplace.cdc b/contracts/community/FlovatarMarketplace.cdc index 35bdf619..38568d59 100644 --- a/contracts/community/FlovatarMarketplace.cdc +++ b/contracts/community/FlovatarMarketplace.cdc @@ -110,7 +110,7 @@ pub contract FlovatarMarketplace { // store the price in the price array self.flovatarPrices[id] = price - // put the NFT into the the forSale dictionary + // put the NFT into the forSale dictionary let oldToken <- self.flovatarForSale[id] <- token destroy oldToken @@ -126,7 +126,7 @@ pub contract FlovatarMarketplace { // store the price in the price array self.flovatarComponentPrices[id] = price - // put the NFT into the the forSale dictionary + // put the NFT into the forSale dictionary let oldToken <- self.flovatarComponentForSale[id] <- token destroy oldToken diff --git a/contracts/community/FlowtyRentals.cdc b/contracts/community/FlowtyRentals.cdc index 84a36e7b..40c9fb9c 100644 --- a/contracts/community/FlowtyRentals.cdc +++ b/contracts/community/FlowtyRentals.cdc @@ -288,7 +288,7 @@ pub contract FlowtyRentals { // rent // Rent the listing. Distributing fees to all parties and taking a deposit to be held // until the nft is either returned or the rental defaults. A rental can be automatically returned - // if renterNFTProvider is provided, giving us a way obtain the the rented nft automatically + // if renterNFTProvider is provided, giving us a way obtain the rented nft automatically // to be returned. pub fun rent( payment: @FungibleToken.Vault, @@ -361,7 +361,7 @@ pub contract FlowtyRentals { // rent // Rent the listing. Distributing fees to all parties and taking a deposit to be held // until the nft is either returned or the rental defaults. A rental can be automatically returned - // if renterNFTProvider is provided, giving us a way obtain the the rented nft automatically + // if renterNFTProvider is provided, giving us a way obtain the rented nft automatically // to be returned. pub fun rent( payment: @FungibleToken.Vault, @@ -1179,4 +1179,4 @@ pub contract FlowtyRentals { emit FlowtyRentalsInitialized() } -} \ No newline at end of file +} diff --git a/contracts/standard/FungibleTokenSwitchboard.cdc b/contracts/standard/FungibleTokenSwitchboard.cdc index aefe8b2d..aca32273 100644 --- a/contracts/standard/FungibleTokenSwitchboard.cdc +++ b/contracts/standard/FungibleTokenSwitchboard.cdc @@ -171,7 +171,7 @@ pub contract FungibleTokenSwitchboard { ?? panic ("The deposited vault is not available on this switchboard") // Borrow the reference to the desired vault let vaultRef = depositedVaultCapability.borrow() - ?? panic ("Can not borrow a reference to the the vault") + ?? panic ("Can not borrow a reference to the vault") vaultRef.deposit(from: <-from) } diff --git a/tasks/nfg/main.go b/tasks/nfg/main.go index 353c0285..f5565b80 100644 --- a/tasks/nfg/main.go +++ b/tasks/nfg/main.go @@ -46,7 +46,7 @@ func main() { WithArg("collectionBannerImage", "https://find.mypinata.cloud/ipfs/QmWmDRnSrv8HK5QsiHwUNR4akK95WC8veydq6dnnFbMja1"), WithArg("socials", `{ "Twitter" : "https://twitter.com/NonFunGerbils" }`), ) - description := `#PEPEgerbil is besotted, obsessed by their precious, They cradle it, love it, perhaps it's devine.\n\nThis NFT pairs with a physical painting of mixed technique on canvas, size 24x30cm by Pepelangelo.\n\n Only the the owner of the physical can see what is uniquely precious.` + description := `#PEPEgerbil is besotted, obsessed by their precious, They cradle it, love it, perhaps it's devine.\n\nThis NFT pairs with a physical painting of mixed technique on canvas, size 24x30cm by Pepelangelo.\n\n Only the owner of the physical can see what is uniquely precious.` desc, err := cadence.NewString(description) if err != nil {