We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1c7130 commit 81a6b45Copy full SHA for 81a6b45
CHANGELOG.md
@@ -6,6 +6,8 @@ Notable changes to this project are documented in this file. The format is based
6
7
Breaking changes (😱!!!):
8
9
+- Removed `Newtype` instance for `TacitString`
10
+
11
New features:
12
13
Bugfixes:
src/Data/TacitString.purs
@@ -4,11 +4,9 @@ module Data.TacitString
4
) where
5
import Prelude
-import Data.Newtype (class Newtype)
newtype TacitString = TacitString String
-derive instance newtypeTacitString :: Newtype TacitString _
derive instance eqTacitString :: Eq TacitString
derive instance ordTacitString :: Ord TacitString
14
0 commit comments