From b1771f282584c6909200899eab1fd55652a2eb3d Mon Sep 17 00:00:00 2001 From: Anton-4 <17049058+Anton-4@users.noreply.github.com> Date: Wed, 4 Sep 2024 19:51:43 +0200 Subject: [PATCH] roc fromat --- examples/Results/main.roc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Results/main.roc b/examples/Results/main.roc index 84df690..59cd239 100644 --- a/examples/Results/main.roc +++ b/examples/Results/main.roc @@ -53,7 +53,7 @@ parseWithTryV2 = \line -> |> Result.try \birthYear -> Ok { firstName, lastName, birthYear } -## The `?` operator, called the "try operator", is +## The `?` operator, called the "try operator", is ## [syntactic sugar](en.wikipedia.org/wiki/Syntactic_sugar) for `Result.try`. ## It makes the code much less nested and easier to read. ## The following function is equivalent to `parseWithTry`: