From c1075bb702d1d21f6b0e12c0ceb98691207bfc0c Mon Sep 17 00:00:00 2001 From: Ian Grant Jeffries Date: Sun, 22 Feb 2015 19:29:10 -0500 Subject: [PATCH] Fix haddock comment. --- hjsonpointer.cabal | 2 +- src/Data/JsonPointer.hs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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