summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorErik Rose <erik@mozilla.com>2011-12-19 15:33:20 -0800
committerErik Rose <erik@mozilla.com>2011-12-19 15:33:20 -0800
commit4ab628f086ad697243159d4700a5e661297d748d (patch)
treed85ac3cfffba6d6997167a3a3f34d9fa1042a37a /README.rst
parent58a9726a0bb23e684255bcc3009ab05fcc10a5f5 (diff)
downloadblessings-4ab628f086ad697243159d4700a5e661297d748d.tar.gz
Sugar cursor-visibility and single-space-movement capabilities. Closes #15.
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index 692fff5..07dd4f6 100644
--- a/README.rst
+++ b/README.rst
@@ -100,8 +100,8 @@ available as attributes on a ``Terminal``. For example::
term = Terminal()
print 'I am ' + term.bold + 'bold' + term.normal + '!'
-You can also use them as wrappers so you don't have to say ``normal``
-afterward::
+Though they are strings at heart, you can also use them as callable wrappers so
+you don't have to say ``normal`` afterward::
print 'I am', term.bold('bold') + '!'