Skip to content

Commit 5469a48

Browse files
authored
remove useless pure comment, closes #1937 (#1948)
1 parent 68b860a commit 5469a48

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@
1616
**Note**: A feature tagged as Experimental is in a
1717
high state of flux, you're at risk of it changing without notice.
1818

19+
# 2.16.8
20+
21+
**Polish**
22+
23+
Remove useless pure comment, closes #1937
24+
1925
# 2.16.7
2026

2127
**Polish**

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fp-ts",
3-
"version": "2.16.7",
3+
"version": "2.16.8",
44
"description": "Functional programming in TypeScript",
55
"main": "./lib/index.js",
66
"module": "./es6/index.js",

src/ReaderTaskEither.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export interface ReaderTaskEither<R, E, A> {
9393
* @category conversions
9494
* @since 2.0.0
9595
*/
96-
export const fromTaskEither: <E, A, R = unknown>(fa: TaskEither<E, A>) => ReaderTaskEither<R, E, A> = /*#__PURE__*/ R.of
96+
export const fromTaskEither: <E, A, R = unknown>(fa: TaskEither<E, A>) => ReaderTaskEither<R, E, A> = R.of
9797

9898
/**
9999
* @category constructors

0 commit comments

Comments
 (0)