summaryrefslogtreecommitdiff
path: root/blessings
diff options
context:
space:
mode:
authorErik Rose <erik@mozilla.com>2013-09-09 23:05:54 -0400
committerErik Rose <erik@mozilla.com>2013-09-09 23:05:54 -0400
commit8a5d9976160869dd00bd1d3943dee467d946f0cc (patch)
tree2f43604ed332355d24b36419c92d188c35a4574d /blessings
parent0c3612af72e07d17ad5d4f5d7f8b457f2fadc9f4 (diff)
downloadblessings-8a5d9976160869dd00bd1d3943dee467d946f0cc.tar.gz
Fix some spelling and grammar.
Diffstat (limited to 'blessings')
-rw-r--r--blessings/__init__.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/blessings/__init__.py b/blessings/__init__.py
index abf44c1..d558907 100644
--- a/blessings/__init__.py
+++ b/blessings/__init__.py
@@ -175,18 +175,18 @@ class Terminal(object):
@property
def does_styling(self):
- """ Whether this ``Terminal`` attempts to emit capabilities.
+ """Whether attempt to emit capabilities
- This is influenced by the ``is_a_tty`` property, and by the
+ This is influenced by the ``is_a_tty`` property and by the
``force_styling`` argument to the constructor. You can examine
this value to decide whether to draw progress bars or other frippery.
+
"""
return self._does_styling
@property
def is_a_tty(self):
- """ Wether the ``stream`` appears to be associated with a terminal.
- """
+ """Whether my ``stream`` appears to be associated with a terminal"""
return self._is_a_tty
@property