Merge pull request #656 from Janiczek/patch-1

Fix fun syntax with/wrap example
This commit is contained in:
Nicolas Abril 2024-08-04 20:33:24 +00:00 committed by GitHub
commit 848fd2b36e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1093,7 +1093,7 @@ Result/wrap x = (Result/Ok x)
with Result {
ask x = (some_operation ...)
ask y = (some_operation ...)
wrap(x * y)
(wrap (* x y))
}
```