summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMarius Gedminas <marius@gedmin.as>2010-12-29 01:41:55 +0200
committerMarius Gedminas <marius@gedmin.as>2010-12-29 01:41:55 +0200
commit5e2c481dda9c69477749693c3563255b94f25990 (patch)
treeddce198c3c2a8ec4da9a77d329327877cfade855 /docs
parent3b7c5e6ab8af0a80b10e8bef0c36fa6d10638b63 (diff)
downloadpyramid-5e2c481dda9c69477749693c3563255b94f25990.tar.gz
pyramid-5e2c481dda9c69477749693c3563255b94f25990.tar.bz2
pyramid-5e2c481dda9c69477749693c3563255b94f25990.zip
Whitespace bigotry.
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/resources.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/narr/resources.rst b/docs/narr/resources.rst
index 3962e9e00..8cf2cead2 100644
--- a/docs/narr/resources.rst
+++ b/docs/narr/resources.rst
@@ -533,7 +533,7 @@ declares that the blog entry implements an :term:`interface`.
implements(IBlogEntry)
def __init__(self, title, body, author):
self.title = title
- self.body = body
+ self.body = body
self.author = author
self.created = datetime.datetime.now()
@@ -568,7 +568,7 @@ To do so, use the :func:`zope.interface.directlyProvides` function:
class BlogEntry(object):
def __init__(self, title, body, author):
self.title = title
- self.body = body
+ self.body = body
self.author = author
self.created = datetime.datetime.now()
@@ -596,7 +596,7 @@ the :func:`zope.interface.alsoProvides` function:
class BlogEntry(object):
def __init__(self, title, body, author):
self.title = title
- self.body = body
+ self.body = body
self.author = author
self.created = datetime.datetime.now()