Skip to content

Commit 40a7c89

Browse files
committed
chore: correct typo in comments for dual function documentation
1 parent 3449cb7 commit 40a7c89

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/utilities/eff/docs/functions/dual.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The definition of the uncurried function.
3333
```ts
3434
import { dual, pipe } from "effect/Function"
3535

36-
// Exampe using arity to determine data-first or data-last style
36+
// Example using arity to determine data-first or data-last style
3737
const sum: {
3838
(that: number): (self: number) => number
3939
(self: number, that: number): number

packages/utilities/eff/src/function.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* ```ts
3434
* import { dual, pipe } from "effect/Function"
3535
*
36-
* // Exampe using arity to determine data-first or data-last style
36+
* // Example using arity to determine data-first or data-last style
3737
* const sum: {
3838
* (that: number): (self: number) => number
3939
* (self: number, that: number): number

0 commit comments

Comments
 (0)