summaryrefslogtreecommitdiff
path: root/stevedore
diff options
context:
space:
mode:
authorCleber Rosa <cleber.gnu@gmail.com>2015-08-28 14:32:08 -0300
committerCleber Rosa <cleber.gnu@gmail.com>2015-08-28 14:36:47 -0300
commite833f8709f92359fcdeedabd86d1f54087f17e2c (patch)
tree601e2746645d2a7596bd5df47790f8d8a9d8b39d /stevedore
parentd229c846c6bdb763e43858edd999f3360caf7500 (diff)
downloadstevedore-e833f8709f92359fcdeedabd86d1f54087f17e2c.tar.gz
Examples typo fix
This fixes a simple typo in the basic examples used in the tutorial. Change-Id: I914676c91def2fe611b69735141b3ceb342d26a7 Signed-off-by: Cleber Rosa <cleber.gnu@gmail.com>
Diffstat (limited to 'stevedore')
-rw-r--r--stevedore/example/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/stevedore/example/base.py b/stevedore/example/base.py
index 1c8ca4c..ec95424 100644
--- a/stevedore/example/base.py
+++ b/stevedore/example/base.py
@@ -5,7 +5,7 @@ import six
@six.add_metaclass(abc.ABCMeta)
class FormatterBase(object):
- """Base class for example plugin used in the tutoral.
+ """Base class for example plugin used in the tutorial.
"""
def __init__(self, max_width=60):