Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
gcanti committed Apr 26, 2023
1 parent 75076dc commit 206b82c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Parser.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/**
* @since 0.6.0
*/
import { ChainRec2, tailRec } from 'fp-ts/ChainRec'
import { Alt2 } from 'fp-ts/lib/Alt'
import { Alternative2 } from 'fp-ts/lib/Alternative'
import { Applicative2 } from 'fp-ts/lib/Applicative'
import * as A from 'fp-ts/lib/Array'
import { Chain2 } from 'fp-ts/lib/Chain'
import { ChainRec2, tailRec } from 'fp-ts/lib/ChainRec'
import * as E from 'fp-ts/lib/Either'
import { identity, Lazy, pipe } from 'fp-ts/lib/function'
import { Functor2 } from 'fp-ts/lib/Functor'
Expand Down
2 changes: 1 addition & 1 deletion src/string.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @since 0.6.0
*/
import * as E from 'fp-ts/Either'
import * as E from 'fp-ts/lib/Either'
import { Foldable, Foldable1 } from 'fp-ts/lib/Foldable'
import { pipe } from 'fp-ts/lib/function'
import { Functor, Functor1 } from 'fp-ts/lib/Functor'
Expand Down

0 comments on commit 206b82c

Please sign in to comment.