From fba44cad2251d56e2836765ae9daa6ef23d7e1e4 Mon Sep 17 00:00:00 2001 From: Thibault Martinez Date: Mon, 26 Jun 2023 10:09:24 +0200 Subject: [PATCH] Apply suggestions from code review --- sdk/examples/how_tos/nfts/burn_nft.rs | 2 +- sdk/examples/how_tos/nfts/mint_nft.rs | 2 +- sdk/examples/how_tos/nfts/send_nft.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sdk/examples/how_tos/nfts/burn_nft.rs b/sdk/examples/how_tos/nfts/burn_nft.rs index fe8fa689f2..c6024acf91 100644 --- a/sdk/examples/how_tos/nfts/burn_nft.rs +++ b/sdk/examples/how_tos/nfts/burn_nft.rs @@ -4,7 +4,7 @@ //! In this example we will burn an existing nft output. //! Rename `.env.example` to `.env` first. //! -//! `cargo run --example burn_nft --release` +//! `cargo run --release --example burn_nft` use std::env::var; diff --git a/sdk/examples/how_tos/nfts/mint_nft.rs b/sdk/examples/how_tos/nfts/mint_nft.rs index 99d932eec0..72fda4d19b 100644 --- a/sdk/examples/how_tos/nfts/mint_nft.rs +++ b/sdk/examples/how_tos/nfts/mint_nft.rs @@ -4,7 +4,7 @@ //! In this example we will mint an NFT. //! Rename `.env.example` to `.env` first. //! -//! `cargo run --example mint_nft --release` +//! `cargo run --release --example mint_nft` use std::env::var; diff --git a/sdk/examples/how_tos/nfts/send_nft.rs b/sdk/examples/how_tos/nfts/send_nft.rs index a22c57dc54..5cd5f09ef8 100644 --- a/sdk/examples/how_tos/nfts/send_nft.rs +++ b/sdk/examples/how_tos/nfts/send_nft.rs @@ -4,7 +4,7 @@ //! In this example we will send an nft. //! Rename `.env.example` to `.env` first. //! -//! `cargo run --example send_nft --release` +//! `cargo run --release --example send_nft` use std::env::var;