diff --git a/hjsonpointer.cabal b/hjsonpointer.cabal index 988790f..0a943de 100644 --- a/hjsonpointer.cabal +++ b/hjsonpointer.cabal @@ -1,5 +1,5 @@ name: hjsonpointer -version: 0.1.0.0 +version: 0.1.0.1 synopsis: JSON Pointer library for Haskell homepage: https://github.com/seagreen/hjsonpointer license: MIT diff --git a/src/Data/JsonPointer.hs b/src/Data/JsonPointer.hs index 87c85b7..b0015e0 100644 --- a/src/Data/JsonPointer.hs +++ b/src/Data/JsonPointer.hs @@ -22,7 +22,7 @@ data PointerErr | UnindexableValue deriving (Eq, Show) --- The Text to build a JSON Pointer must either be empty or start +-- | The Text to build a JSON Pointer must either be empty or start -- with a '/'. If you're turning a URI Fragment into a JSON Pointer -- you must drop the initial '#'. jsonPointer :: Text -> Either PointerErr JsonPointer