summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulen Ruiz Aizpuru <julenx@gmail.com>2014-05-10 22:40:42 +0200
committerJulen Ruiz Aizpuru <julenx@gmail.com>2014-05-10 22:40:42 +0200
commitea5edae20706d9f3d652658d2d01f426c96aeca0 (patch)
tree656fdf39e4952c2cc1d9eee5e7c57daaa9ce9405
parent48f3e9160f4199cb428eae1b7b7c04176dd7cd99 (diff)
downloadclick-ea5edae20706d9f3d652658d2d01f426c96aeca0.tar.gz
Docs: minor fixes
-rw-r--r--click/types.py4
-rw-r--r--docs/testing.rst2
2 files changed, 3 insertions, 3 deletions
diff --git a/click/types.py b/click/types.py
index 5295cb3..fed3748 100644
--- a/click/types.py
+++ b/click/types.py
@@ -285,8 +285,8 @@ class Path(ParamType):
silently skipped.
:param file_okay: controls if a file is a possible value.
:param dir_okay: controls if a directory is a possible value.
- :param writable: if true, the a writable check is performed.
- :param readable: if true, the a readable check is performed.
+ :param writable: if true, a writable check is performed.
+ :param readable: if true, a readable check is performed.
:param resolve_path: if this is true, then the path is fully resolved
before the value is passed onwards. This means
that it's absolute and symlinks are resolved.
diff --git a/docs/testing.rst b/docs/testing.rst
index 21a3bb6..c46f6ed 100644
--- a/docs/testing.rst
+++ b/docs/testing.rst
@@ -3,7 +3,7 @@ Testing Click Applications
.. currentmodule:: click.testing
-For basic testing Click provides the :mod:`click.testing` module which
+For basic testing click provides the :mod:`click.testing` module which
provides test functionality that helps you invoke command line
applications and check their behavior.