Merge pull request #604 from HigherOrderCO/with-fun-undefer-docs

Fix the monadic example using `with` for fun syntax
This commit is contained in:
imaqtkatt 2024-06-24 17:05:11 +00:00 committed by GitHub
commit 70944db468
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1015,7 +1015,7 @@ match x {
### With block
```rust
Result/bind (Result/Ok val) nxt = (nxt val)
Result/bind (Result/Ok val) nxt = ((undefer nxt) val)
Result/bind err _nxt = err
div a b = switch b {