From 9de86d5ac42611ec0c05487863c348919e390cd0 Mon Sep 17 00:00:00 2001 From: Emmanuel Umeh <40989414+Emmanuel-umeh@users.noreply.github.com> Date: Fri, 22 Jul 2022 12:38:10 +0100 Subject: [PATCH] Update letter casing This PR fixes the difference in variable casing difference between the tutorial question and answer --- .../transactions-ether-and-wei/etherAndWei.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SolidityBeginnerCourse/transactions-ether-and-wei/etherAndWei.md b/SolidityBeginnerCourse/transactions-ether-and-wei/etherAndWei.md index 074ff0c90..fe11f92d4 100644 --- a/SolidityBeginnerCourse/transactions-ether-and-wei/etherAndWei.md +++ b/SolidityBeginnerCourse/transactions-ether-and-wei/etherAndWei.md @@ -15,7 +15,7 @@ One `ether` is equal to 1,000,000,000,000,000,000 (10^18) `wei` (line 11). Watch a video tutorial on Ether and Wei. ## ⭐️ Assignment -1. Create a `public` `uint` called `oneGWei` and set it to 1 `gwei`. -2. Create a `public` `bool` called `isOneGWei` and set it to the result of a comparison operation between 1 gwei and 10^9. +1. Create a `public` `uint` called `oneGwei` and set it to 1 `gwei`. +2. Create a `public` `bool` called `isOneGwei` and set it to the result of a comparison operation between 1 gwei and 10^9. -Tip: Look at how this is written for `gwei` and `ether` in the contract. \ No newline at end of file +Tip: Look at how this is written for `gwei` and `ether` in the contract.