diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -23,8 +23,8 @@
 Installing
 ==========
 
-Installing from Cabal
----------------------
+Installing from Hackage
+-----------------------
 
 In order to install VKHS, one typically should do the following
 
@@ -86,7 +86,7 @@
 
     $ export VKQ_ACCESS_TOKEN=d785932b871f096bd73aac6a35d7a7c469dd788d796463a871e5beb5c61bc6c96788ec2
 
-VKQ may save the access tokein into state file:
+VKQ may cache the access tokein into a state file:
 
     $ vkq login --access-token-file=.access-token
 
@@ -106,7 +106,7 @@
 
 For example, lets call ausio.search method to get some Beatles records:
 
-    $ vkq call audio.search q=Beatles --pretty
+    $ vkq call group.search q=Beatles --pretty
 
       { "response": [
         614751,
diff --git a/VKHS.cabal b/VKHS.cabal
--- a/VKHS.cabal
+++ b/VKHS.cabal
@@ -1,6 +1,6 @@
 
 name:                VKHS
-version:             1.8
+version:             1.8.1
 synopsis:            Provides access to Vkontakte social network via public API
 description:
     Provides access to Vkontakte API methods. Library requires no interaction
diff --git a/app/vkq/Main.hs b/app/vkq/Main.hs
--- a/app/vkq/Main.hs
+++ b/app/vkq/Main.hs
@@ -98,7 +98,7 @@
         <*> switch (long "pretty" <> help "Pretty print resulting JSON")))
             ( progDesc "Call VK API method" ))
 
-  in subparser (
+  in hsubparser (
        command "login" (info (Login <$> genericOptions_login <*> (LoginOptions
       <$> flag False True (long "eval" <> help "Print in shell-friendly format")
       ))
