v0.2.7
diff --git a/README.rst b/README.rst
index 92654ff..9d8f566 100644
--- a/README.rst
+++ b/README.rst
@@ -38,9 +38,6 @@
 
 argcomplete.autocomplete(*parser*)
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-.. automodule:: argcomplete
-   :members:
-
 This method is the entry point to the module. It must be called **after** ArgumentParser construction is complete, but
 **before** the ``ArgumentParser.parse()`` method is called. The method looks for an environment variable that the
 completion hook shellcode sets, and if it's there, collects completions, prints them to the output stream (fd 8 by
@@ -48,11 +45,11 @@
 
 .. admonition:: Side effects
 
- ``argcomplete`` gets completions by running your program. It intercepts the execution flow at the moment
- :meth:`argcomplete.autocomplete()` is called. After sending completions, it exits using ``exit_method``. This means if
+ Argcomplete gets completions by running your program. It intercepts the execution flow at the moment
+ ``argcomplete.autocomplete()`` is called. After sending completions, it exits using ``exit_method``. This means if
  your program has any side effects that happen before ``argcomplete`` is called, those side effects will happen every
  time the user presses ``<TAB>`` (although anything your program prints to stdout or stderr will be suppressed). For
- this reason it's best to construct the argument parser and call :meth:`argcomplete.autocomplete()` as early as
+ this reason it's best to construct the argument parser and call ``argcomplete.autocomplete()`` as early as
  possible in your execution flow.
 
 Specifying completers
diff --git a/docs/index.rst b/docs/index.rst
index 4f1f2c1..816044a 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -1,6 +1,7 @@
 .. include:: ../README.rst
 
-Contents:
+.. automodule:: argcomplete
+   :members:
 
 .. toctree::
    :maxdepth: 2
diff --git a/setup.py b/setup.py
index 6df40e5..a8fea51 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@
 
 setup(
     name='argcomplete',
-    version='0.2.4',
+    version='0.2.7',
     url='https://github.com/kislyuk/argcomplete',
     license='Apache Software License',
     author='Andrey Kislyuk',