From 85285877fd1514127b869e07e9388af815527bf4 Mon Sep 17 00:00:00 2001 From: Giovanni Sanchez <108043524+sisyphusSmiling@users.noreply.github.com> Date: Tue, 19 Nov 2024 10:23:31 -0700 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Navid TehraniFar --- contracts/RandomConsumer.cdc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/RandomConsumer.cdc b/contracts/RandomConsumer.cdc index ec04cb9..e66b659 100644 --- a/contracts/RandomConsumer.cdc +++ b/contracts/RandomConsumer.cdc @@ -169,7 +169,7 @@ access(all) contract RandomConsumer { /// Returns whether the request can be fulfilled as defined by whether it has already been fulfilled and the /// created block height has been surpassed. /// - /// @param: True if it can be fulfille, false otherwise + /// @param: True if it can be fulfilled, false otherwise /// access(all) view fun canFullfill(): Bool { return !self.fulfilled && getCurrentBlock().height > self.block