summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorKevin Yap <me@kevinyap.ca>2014-05-31 23:34:50 -0700
committerKevin Yap <me@kevinyap.ca>2014-05-31 23:34:50 -0700
commitb131df85c515a2289678a45140504a8ebc2b88b9 (patch)
tree888cb7187b28bb74cf02e3c5bd5dc92c24a36eea /examples
parent9b2648ae260fad9b076558aed478fdc5ed5e047c (diff)
downloadclick-b131df85c515a2289678a45140504a8ebc2b88b9.tar.gz
Standardized capitalization of Unix
Diffstat (limited to 'examples')
-rw-r--r--examples/inout/inout.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/inout/inout.py b/examples/inout/inout.py
index 30ffce0..b93f306 100644
--- a/examples/inout/inout.py
+++ b/examples/inout/inout.py
@@ -5,7 +5,7 @@ import click
@click.argument('input', type=click.File('rb'), nargs=-1)
@click.argument('output', type=click.File('wb'))
def cli(input, output):
- """This script works similar to the unix `cat` command but it writes
+ """This script works similar to the Unix `cat` command but it writes
into a specific file (which could be the standard output as denoted by
the ``-`` sign).