From 728ca29846d0c06b57a206bf6f002964766f5397 Mon Sep 17 00:00:00 2001 From: Boris Verkhovskiy Date: Fri, 13 Sep 2024 23:51:57 -0600 Subject: [PATCH] Update gleam.html.markdown --- gleam.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gleam.html.markdown b/gleam.html.markdown index f3060810..e9dd89bf 100644 --- a/gleam.html.markdown +++ b/gleam.html.markdown @@ -832,7 +832,7 @@ fn roll_two_dices_with_use() { use first_dice <- result.try(throw_dice_as_result()) use second_dice <- result.try(throw_dice_as_result()) use sum <- result.map(sum_dice_values(first_dice, second_dice)) - //This is the remaining code in innermost callback function + // This is the remaining code in innermost callback function sum }