Skip to content

Commit

Permalink
Update cabal file
Browse files Browse the repository at this point in the history
  • Loading branch information
sol committed Jun 4, 2014
1 parent 3d5b9ce commit feec421
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.markdown
@@ -1,10 +1,10 @@
# aeson-qq: JSON quasiquoter for Haskell

This package expose the function
This package exposes the function
[`aesonQQ`](http://hackage.haskell.org/package/aeson-qq/docs/Data-Aeson-QQ.html#v:aesonQQ)
that compile-time converts a string representation of a JSON value into
that compile-time converts a string representation of a JSON value into a
[`Data.Aeson.Value`](http://hackage.haskell.org/package/aeson-0.7.0.6/docs/Data-Aeson.html#t:Value).
`aesonQQ` got the signature
`aesonQQ` has the signature

```haskell
aesonQQ :: QuasiQuoter
Expand Down
14 changes: 8 additions & 6 deletions aeson-qq.cabal
@@ -1,14 +1,16 @@
name: aeson-qq
version: 0.6.1
synopsis: Json Quasiquatation for Haskell.
description: @aeson-qq@ provides json quasiquatation for Haskell.
synopsis: JSON quasiquoter for Haskell
description: @aeson-qq@ provides a JSON quasiquoter for Haskell.
.
This package expose the function @aesonQQ@ that compile time converts json code into a @Data.Aeson.Value@.
@aesonQQ@ got the signature
This package exposes the function `aesonQQ` that compile-time
converts a string representation of a JSON value into a
`Data.Aeson.Value`. `aesonQQ` has the signature
.
> aesonQQ :: QuasiQuoter.
>aesonQQ :: QuasiQuoter
.
Consult documentation in the module @Data.Aeson.QQ@.
Consult the @README@ for documentation:
<https://github.com/zalora/aeson-qq#readme>

homepage: http://github.com/zalora/aeson-qq
license: MIT
Expand Down
2 changes: 1 addition & 1 deletion src/Data/Aeson/QQ.hs
@@ -1,6 +1,6 @@
{-# LANGUAGE TemplateHaskell #-}
-- | Have a loot at the <https://github.com/zalora/aeson-qq#readme README> for
-- documentatino.
-- documentation.
module Data.Aeson.QQ (aesonQQ) where

import Language.Haskell.TH
Expand Down

0 comments on commit feec421

Please sign in to comment.