index.rst: fix link to overview
authorAlexander Solovyov <piranha@piranha.org.ua>
Wed, 10 Feb 2010 10:31:27 +0200
changeset 100 78a1e77609e6
parent 99 a77c4a82e836
child 101 7507884b8dff
index.rst: fix link to overview
.hgignore
docs/Makefile
docs/index.rst
docs/overview.rst
--- 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/
--- 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"
--- 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
--- 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.