From 78409af90b2d6955815d1fabf9295b132e5943e5 Mon Sep 17 00:00:00 2001 From: Drewry Pope Date: Sun, 6 Jul 2025 04:21:48 -0500 Subject: [PATCH] fix typo --- examples/print.roc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/print.roc b/examples/print.roc index 87b28c16..433de1c1 100644 --- a/examples/print.roc +++ b/examples/print.roc @@ -27,5 +27,5 @@ main! = |_args| ["Foo", "Bar", "Baz"] |> List.for_each_try!(|str| Stdout.line!(str)) - # Use List.map! if you want to apply an effectful function that returns somehing. - # Use List.map_try! if you want to apply an effectful function that returns a Result. \ No newline at end of file + # Use List.map! if you want to apply an effectful function that returns something. + # Use List.map_try! if you want to apply an effectful function that returns a Result.