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 1a2afe5 commit cfabd7fCopy full SHA for cfabd7f
json-pointer.cabal
@@ -1,7 +1,7 @@
1
name:
2
json-pointer
3
version:
4
- 0.1.2.1
+ 0.1.2.2
5
synopsis:
6
JSON Pointer parsing and interpretation utilities
7
description:
library/JSONPointer/Model.hs
@@ -17,6 +17,9 @@ import qualified Data.Text
17
newtype JSONPointer =
18
JSONPointer (forall m. Monoid m => (Maybe Int -> Text -> m) -> m)
19
20
+instance Semigroup JSONPointer where
21
+ (<>) = mappend
22
+
23
instance Monoid JSONPointer where
24
{-# INLINE mempty #-}
25
mempty =
0 commit comments