Skip to content

Commit 5e3895a

Browse files
authored
Merge pull request #586 from pcrama/fix-comment-paren
Fix parentheses around example in documentation
2 parents e264cad + 310bea8 commit 5e3895a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Data/Aeson.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ eitherDecodeStrict' =
381381
-- The 'Object' type contains JSON objects:
382382
--
383383
-- > λ> decode "{\"name\":\"Dave\",\"age\":2}" :: Maybe Object
384-
-- > Just (fromList) [("name",String "Dave"),("age",Number 2)]
384+
-- > Just (fromList [("name",String "Dave"),("age",Number 2)])
385385
--
386386
-- You can extract values from it with a parser using 'parse',
387387
-- 'parseEither' or, in this example, 'parseMaybe':

0 commit comments

Comments
 (0)