Skip to content

Commit

Permalink
Rename Uniq -> UNIQ
Browse files Browse the repository at this point in the history
  • Loading branch information
mechairoi committed Feb 12, 2016
1 parent de25c72 commit 4eeac9f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Data/Unique.purs
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
module Data.Unique
( newUnique
, Unique()
, Uniq()
, UNIQ()
) where

import Control.Monad.Eff
import Prelude

foreign import data Uniq :: !
foreign import data UNIQ :: !

newtype Unique = Unique String

foreign import newUnique :: forall e. Eff (uniq :: Uniq | e) Unique
foreign import newUnique :: forall e. Eff (uniq :: UNIQ | e) Unique

instance showUnique :: Show Unique where
show (Unique a) = a
Expand Down

0 comments on commit 4eeac9f

Please sign in to comment.