diff --git a/char-qq.cabal b/char-qq.cabal
--- a/char-qq.cabal
+++ b/char-qq.cabal
@@ -1,8 +1,12 @@
 name: char-qq
-version: 0.1.1
+version: 0.1.1.1
 category: QuasiQuotes
 synopsis: Quasiquoters for characters and codepoints
-description: A set of quasiquoters providing compile-time conversions between characters and codepoints.
+description:
+  A set of quasiquoters providing compile-time conversions between characters and codepoints.
+  .
+  Solves such problems as when you'd rather refer to a codepoint by a char,
+  but don't want to waste your runtime computation cycles on the "ord" operation.
 homepage: https://github.com/metrix-ai/char-qq
 bug-reports: https://github.com/metrix-ai/char-qq/issues
 author: Nikita Volkov <nikita.y.volkov@mail.ru>
diff --git a/library/CharQq.hs b/library/CharQq.hs
--- a/library/CharQq.hs
+++ b/library/CharQq.hs
@@ -30,7 +30,7 @@
   dec = const (fail "Unsupported")
 
 {-|
-A quasi-quoter which produces a list of unicode codepoint integral literals of a sequence of chars.
+A quasi-quoter which produces a list of unicode codepoint integer literals of a sequence of chars.
 E.g.,
 
 >>> [CharQq.ords|абв|]
@@ -49,7 +49,7 @@
 A quasi-quoter which produces a char literal from a codepoint.
 E.g.,
 
->>> [chr|90|]
+>>> [CharQq.chr|90|]
 'Z'
 
 Works in the context of expressions and patterns.
