Skip to content

Commit 317582c

Browse files
committed
Reduce the footprint of this PR a little
1 parent 09faf35 commit 317582c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ Takes an `Err` value and maps it to a `Result<T, SomeNewType>`. This is useful f
408408
```typescript
409409
class Result<T, E> {
410410
orElse<U, A>(
411-
callback: (e: E) => Result<U, A>
411+
callback: (error: E) => Result<U, A>
412412
): Result<U | T, A> { ... }
413413
}
414414
```
@@ -1180,7 +1180,7 @@ Takes an `Err` value and maps it to a `ResultAsync<T, SomeNewType>`. This is use
11801180
```typescript
11811181
class ResultAsync<T, E> {
11821182
orElse<U, A>(
1183-
callback: (e: E) => Result<U, A> | ResultAsync<U, A>
1183+
callback: (error: E) => Result<U, A> | ResultAsync<U, A>
11841184
): ResultAsync<U | T, A> { ... }
11851185
}
11861186
```

0 commit comments

Comments
 (0)