From 97c8bbbb292d79884f1a24dc5a59343b624b5e1a Mon Sep 17 00:00:00 2001 From: Bob Date: Thu, 3 Apr 2025 18:06:12 +0800 Subject: [PATCH] fix: standardize gwei variable naming in assignment --- .../transactions-ether-and-wei/etherAndWei.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SolidityBeginnerCourse/transactions-ether-and-wei/etherAndWei.md b/SolidityBeginnerCourse/transactions-ether-and-wei/etherAndWei.md index 074ff0c90..d87b510be 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