Skip to content

Commit

Permalink
remove useless pure comment, closes #1937 (#1948)
Browse files Browse the repository at this point in the history
  • Loading branch information
gcanti committed Jul 7, 2024
1 parent 68b860a commit 5469a48
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@
**Note**: A feature tagged as Experimental is in a
high state of flux, you're at risk of it changing without notice.

# 2.16.8

**Polish**

Remove useless pure comment, closes #1937

# 2.16.7

**Polish**
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fp-ts",
"version": "2.16.7",
"version": "2.16.8",
"description": "Functional programming in TypeScript",
"main": "./lib/index.js",
"module": "./es6/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/ReaderTaskEither.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export interface ReaderTaskEither<R, E, A> {
* @category conversions
* @since 2.0.0
*/
export const fromTaskEither: <E, A, R = unknown>(fa: TaskEither<E, A>) => ReaderTaskEither<R, E, A> = /*#__PURE__*/ R.of
export const fromTaskEither: <E, A, R = unknown>(fa: TaskEither<E, A>) => ReaderTaskEither<R, E, A> = R.of

/**
* @category constructors
Expand Down

0 comments on commit 5469a48

Please sign in to comment.