diff --git a/RandomDotOrg.cabal b/RandomDotOrg.cabal
--- a/RandomDotOrg.cabal
+++ b/RandomDotOrg.cabal
@@ -1,10 +1,12 @@
 name:                RandomDotOrg
-version:             0.2
+version:             0.2.1
 build-type:          Simple
 Cabal-Version:       >= 1.2
-synopsis:            Interface to random numbers on random.org
-description:         Using this package you can generate random numbers
-		     (based on the atmosphere, not a PRNG) via the random.org website
+synopsis:            Interface to random.org
+description:         Using this package you can generate random numbers,
+		     strings and randomize a sequence of numbers through
+		     the random.org website, which provides randomness
+		     through atmospheric noise rather than a PRNG.
 category:            Other
 license:             PublicDomain
 license-file:        LICENSE
diff --git a/System/Random/Atmosphere.hs b/System/Random/Atmosphere.hs
--- a/System/Random/Atmosphere.hs
+++ b/System/Random/Atmosphere.hs
@@ -86,7 +86,7 @@
                           Just u' -> retrieve u' lines
 
 -- | Used to check how much of your random.org quota you have. Please see
--- 'http://random.org/quota/' for more info.
+-- <http://random.org/quota> for more info.
 getQuota :: IO (Either String Int)
 getQuota = do let uri = parseURI "http://random.org/quota/?format=plain"
               case uri of
