Skip to content

Commit 928fbc5

Browse files
committed
Fix mixup with docs + touchup some formatting
1 parent 9035b12 commit 928fbc5

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

gitbook/asyncResult/error.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Namespace: `FsToolkit.ErrorHandling`
44

5-
Lift an 'error value into an Async<Result<'ok, 'error>>
5+
Lift an `'error` value into an `Async<Result<'ok, 'error>>`
66

77
## Function Signature:
88

gitbook/asyncValidation/error.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
## CancellableTaskValidation
1+
## AsyncValidation.error
22

33
Namespace: `FsToolkit.ErrorHandling`
44

5-
Lift an 'error value into an CancellableTaskValidation<'ok, 'error>
5+
Lift an `'error` value into an `Async<Validation<'ok, 'error>>`
66

77
## Function Signature:
88

99
```fsharp
10-
'error -> CancellableTaskValidation<'ok, 'error>
10+
'error -> Async<Validation<'ok, 'error>>
1111
```
1212

1313
## Examples
@@ -16,7 +16,7 @@ Lift an 'error value into an CancellableTaskValidation<'ok, 'error>
1616

1717

1818
```fsharp
19-
let result : CancellableTaskValidation<int, string> =
20-
CancellableTaskValidation.error "Something bad happened"
19+
let result : Async<Validation<int, string>> =
20+
AsyncValidation.error "Something bad happened"
2121
```
2222

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
## CancellableTaskValidation.error
1+
## CancellableTaskValidation
22

33
Namespace: `FsToolkit.ErrorHandling`
44

5-
Lift an 'error value into an Async<Validation<'ok, 'error>>
5+
Lift an `'error` value into an `CancellableTaskValidation<'ok, 'error>`
66

77
## Function Signature:
88

99
```fsharp
10-
'error -> Async<Validation<'ok, 'error>>
10+
'error -> CancellableTaskValidation<'ok, 'error>
1111
```
1212

1313
## Examples
@@ -16,7 +16,7 @@ Lift an 'error value into an Async<Validation<'ok, 'error>>
1616

1717

1818
```fsharp
19-
let result : Async<Validation<int, string>> =
20-
AsyncValidation.error "Something bad happened"
19+
let result : CancellableTaskValidation<int, string> =
20+
CancellableTaskValidation.error "Something bad happened"
2121
```
2222

gitbook/jobResult/error.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Namespace: `FsToolkit.ErrorHandling`
44

5-
Lift an 'error value into an Job<Result<'ok, 'error>>
5+
Lift an `'error` value into an `Job<Result<'ok, 'error>>`
66

77
## Function Signature:
88

gitbook/taskResult/error.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Namespace: `FsToolkit.ErrorHandling`
44

5-
Lift an 'error value into an Task<Result<'ok, 'error>>
5+
Lift an `'error` value into an `Task<Result<'ok, 'error>>`
66

77
## Function Signature:
88

gitbook/validation/error.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Namespace: `FsToolkit.ErrorHandling`
44

5-
Lift an 'error value into an Validation<'ok, 'error>
5+
Lift an `'error` value into an `Validation<'ok, 'error>`
66

77
## Function Signature:
88

0 commit comments

Comments
 (0)