Skip to content

Commit

Permalink
Fix Result.zip example in docs (#264)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelwinch committed Apr 25, 2024
1 parent dccdbbc commit 8753d67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gitbook/result/zip.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Result<'leftOk, 'error> -> Result<'rightOk, 'error> -> Result<'leftOk * 'rightOk

```fsharp
let result = Result.zip (Ok 1) (Ok 2)
// Ok (Some(1, 2))
// Ok (1, 2)
```

### Example 2
Expand Down

0 comments on commit 8753d67

Please sign in to comment.