summaryrefslogtreecommitdiff
path: root/docs/utils.rst
diff options
context:
space:
mode:
authorJulen Ruiz Aizpuru <julenx@gmail.com>2014-05-22 09:08:33 +0200
committerJulen Ruiz Aizpuru <julenx@gmail.com>2014-05-22 09:08:33 +0200
commita218f6cc0e4c8d0e8dddea2c8c3c1353cfc39181 (patch)
tree95f0f36a644f9a387361ff194825a866787cf40a /docs/utils.rst
parenta5a047127e1a19f8fc429e15e8fb95cc2c5c19a2 (diff)
downloadclick-a218f6cc0e4c8d0e8dddea2c8c3c1353cfc39181.tar.gz
Docs: fixes
Diffstat (limited to 'docs/utils.rst')
-rw-r--r--docs/utils.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/utils.rst b/docs/utils.rst
index 4ed3f73..4920c91 100644
--- a/docs/utils.rst
+++ b/docs/utils.rst
@@ -34,10 +34,10 @@ supressed by passing ``nl=False``::
Printing Filenames
------------------
-Because filenames might not be unicode formatting them can be a bit
-tricky. Generally this is easier on Python 2 than 3 as you can just write
-the bytes to stdout with the print function, but at least on Python 3 you
-will need to always operate in unicode.
+Because filenames might not be unicode, formatting them can be a bit
+tricky. Generally this is easier on Python 2 than on 3 as you can just
+write the bytes to stdout with the print function, but at least on Python
+3 you will need to always operate in unicode.
The way this works with click is through the :func:`format_filename`
function. It does a best effort conversion of the filename to Unicode and