summaryrefslogtreecommitdiff
path: root/docs/commands.rst
diff options
context:
space:
mode:
authorArmin Ronacher <armin.ronacher@active-4.com>2014-06-26 11:59:57 +0100
committerArmin Ronacher <armin.ronacher@active-4.com>2014-06-26 11:59:57 +0100
commit327cfdea49b71b8f41b6f44a62028335e6887d6c (patch)
tree0d4ecfa2187d5031229ddb8855d328fc00684432 /docs/commands.rst
parent19c845857bbdd276c0b9e315d31efabf5f3f4801 (diff)
parente25a95b7811a1a250a17c931ef32367c683882d0 (diff)
downloadclick-327cfdea49b71b8f41b6f44a62028335e6887d6c.tar.gz
Merge pull request #153 from iKevinY/click-rename
Capitalized instances of Click (addressing #128)
Diffstat (limited to 'docs/commands.rst')
-rw-r--r--docs/commands.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/commands.rst b/docs/commands.rst
index cbd97ce..00de222 100644
--- a/docs/commands.rst
+++ b/docs/commands.rst
@@ -3,7 +3,7 @@ Commands and Groups
.. currentmodule:: click
-The most important feature of click is the concept of arbitrarily nesting
+The most important feature of Click is the concept of arbitrarily nesting
command line utilities. This is implemented through the :class:`Command`
and :class:`Group` (actually :class:`MultiCommand`).
@@ -328,7 +328,7 @@ Context Defaults
.. versionadded:: 2.0
-Starting with click 2.0 you can override defaults for contexts not just
+Starting with Click 2.0 you can override defaults for contexts not just
when calling your script, but also in the decorator that declares a
command. For instance given the previous example which defines a custom
``default_map`` this can also be accomplished in the decorator now.