# HG changeset patch
# User Alexander Solovyov <piranha@piranha.org.ua>
# Date 1265790687 -7200
# Node ID 78a1e77609e691a5aceb2ac6ff855949c6b00244
# Parent  a77c4a82e836e0f9cdb136b2fa60874130cb3c9c
index.rst: fix link to overview

diff -r a77c4a82e836 -r 78a1e77609e6 .hgignore
--- a/.hgignore	Sun Jan 24 11:05:51 2010 +0200
+++ b/.hgignore	Wed Feb 10 10:31:27 2010 +0200
@@ -2,3 +2,4 @@
 ^docs/_build/
 ^MANIFEST$
 ^dist/
+^opster.egg-info/
diff -r a77c4a82e836 -r 78a1e77609e6 docs/Makefile
--- a/docs/Makefile	Sun Jan 24 11:05:51 2010 +0200
+++ b/docs/Makefile	Wed Feb 10 10:31:27 2010 +0200
@@ -13,8 +13,7 @@
 
 .PHONY: all help clean html dirhtml pickle json htmlhelp qthelp latex changes linkcheck doctest
 
-all:
-	make html
+all: html
 
 help:
 	@echo "Please use \`make <target>' where <target> is one of"
diff -r a77c4a82e836 -r 78a1e77609e6 docs/index.rst
--- a/docs/index.rst	Sun Jan 24 11:05:51 2010 +0200
+++ b/docs/index.rst	Wed Feb 10 10:31:27 2010 +0200
@@ -36,8 +36,7 @@
  - It's easy to switch between usual command line options parser and
    subcommands.
 
-Read more in `overview`_.
+Read more in :doc:`overview`.
 
 
 .. _single file: http://hg.piranha.org.ua/opster/file/tip/opster.py
-.. _overview: overview
diff -r a77c4a82e836 -r 78a1e77609e6 docs/overview.rst
--- a/docs/overview.rst	Sun Jan 24 11:05:51 2010 +0200
+++ b/docs/overview.rst	Wed Feb 10 10:31:27 2010 +0200
@@ -49,9 +49,9 @@
 .. _note:
 
 I think it's easy to understand what's going on here, except that you need to
-know that underscores in the long name will be replaced with dash at the command
-line. Of course, reverse process happens: if you have option with a dash in long
-name in a definition, it will be replaced with underscore when passed to
+know that underscores in the long name will be replaced with dashes at the
+command line. Of course, reverse process happens: if you have option with a dash
+in long name in a definition, it will be replaced with underscore when passed to
 function. This is done to comply with standarts of writing both console
 interfaces and Python application.