From 179a5826584b571aec5eca9566ab9d15cd398f3e Mon Sep 17 00:00:00 2001 From: Francisco Garmendia <57853508+Luxroy@users.noreply.github.com> Date: Mon, 27 Sep 2021 14:23:20 -0500 Subject: [PATCH] Fix small typos in minting.md Remove extra letter from "wee" and add an "i" to "re-buld" --- docs/native-tokens/minting.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/native-tokens/minting.md b/docs/native-tokens/minting.md index b7b42b8dcc..5541801b7d 100644 --- a/docs/native-tokens/minting.md +++ b/docs/native-tokens/minting.md @@ -352,13 +352,13 @@ fee=$(cardano-cli transaction calculate-min-fee --tx-body-file matx.raw --tx-in- ``` Remember, the transaction input and the output of ada must be equal, or otherwise, the transaction will fail. There can be no leftovers. -To calculate the remaining output wee need to subtract the fee from our funds and save the result in our output variable. +To calculate the remaining output we need to subtract the fee from our funds and save the result in our output variable. ```bash output=$(expr $funds - $fee) ``` -We now have every value we need to re-build the transaction, ready to be signed. So we reissue the same command to re-buld, the only difference being our variables now holding the correct values. +We now have every value we need to re-build the transaction, ready to be signed. So we reissue the same command to re-build, the only difference being our variables now holding the correct values. ```bash cardano-cli transaction build-raw \