From 01e33f1f6d0a3afbcbfbf5391f08866aef7f2019 Mon Sep 17 00:00:00 2001 From: sylverb Date: Thu, 15 Jun 2023 20:24:08 +0200 Subject: [PATCH] Fix typo in comment --- contracts/SolidityHackingWorkshopV8.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/SolidityHackingWorkshopV8.sol b/contracts/SolidityHackingWorkshopV8.sol index e55619d..5d1b641 100644 --- a/contracts/SolidityHackingWorkshopV8.sol +++ b/contracts/SolidityHackingWorkshopV8.sol @@ -141,7 +141,7 @@ contract HeadTail { } /** @dev Guess the choice of party A. - * @param _chooseHead True if the guess is head, false otherwize. + * @param _chooseHead True if the guess is head, false otherwise. */ function guess(bool _chooseHead) public payable { require(msg.value == 1 ether);