diff --git a/src/Text/Megaparsec/Lexer/Tibetan.hs b/src/Text/Megaparsec/Lexer/Tibetan.hs
--- a/src/Text/Megaparsec/Lexer/Tibetan.hs
+++ b/src/Text/Megaparsec/Lexer/Tibetan.hs
@@ -15,10 +15,10 @@
 import Text.Megaparsec.Prim
 import System.Environment
 
--- | Yields a command line parser in case you want a command-line executable for use with another language
+-- | Read a string in, returning integral value or error
 --
 -- > λ > readBo "༣༢༠༥"
--- > 3205
+-- > Just 3205
 readBo :: (Integral a) => String -> Maybe a
 readBo = fmap fromIntegral . rightToMaybe . (runParser (parseNumber :: Parser Integer) "")
 
diff --git a/tibetan-utils.cabal b/tibetan-utils.cabal
--- a/tibetan-utils.cabal
+++ b/tibetan-utils.cabal
@@ -1,5 +1,5 @@
 name: tibetan-utils
-version: 0.1.1.1
+version: 0.1.1.2
 cabal-version: >=1.10
 build-type: Simple
 license: BSD3
@@ -40,7 +40,7 @@
     main-is: Spec.hs
     build-depends:
         base >=4.9.1.0 && <4.10,
-        tibetan-utils >=0.1.1.1 && <0.2,
+        tibetan-utils >=0.1.1.2 && <0.2,
         hspec >=2.4.2 && <2.5,
         hspec-megaparsec >=0.3.1 && <0.4,
         text >=1.2.2.1 && <1.3,
