From 6c04c97ab83959192cbf0d8aed346ed0e100ed01 Mon Sep 17 00:00:00 2001 From: Georges-Charles Brain Date: Tue, 10 Oct 2023 21:39:16 +0300 Subject: [PATCH] Update 4_the_coin_resource_and_create_currency.md corrections after proofreading with Grammarly --- unit-three/lessons/4_the_coin_resource_and_create_currency.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unit-three/lessons/4_the_coin_resource_and_create_currency.md b/unit-three/lessons/4_the_coin_resource_and_create_currency.md index e860ac3..49b3d78 100644 --- a/unit-three/lessons/4_the_coin_resource_and_create_currency.md +++ b/unit-three/lessons/4_the_coin_resource_and_create_currency.md @@ -1,6 +1,6 @@ # The `Coin` Resource and `create_currency` Method -Now we know how generics and witness pattern work, let's revisit the `Coin` resource and the `create_currency` method. +Now we know how generics and witness patterns work, let's revisit the `Coin` resource and the `create_currency` method. ## The `Coin` Resource @@ -93,7 +93,7 @@ It wraps a singleton field `total_supply` of type `Balance::Supply`: } ``` -`Supply` tracks the total amount of the given custom fungible token of type `T` that is currently in circulation. You can see why this field must be a singleton, as having multiple `Supply` instances for a single token type makes no sense. +`Supply` tracks the total amount of the given custom fungible token of type `T` currently circulating. You can see why this field must be a singleton, as having multiple `Supply` instances for a single token type makes no sense. ### `CoinMetadata`