summaryrefslogtreecommitdiff
path: root/docs/narr/resources.rst
diff options
context:
space:
mode:
authorCasey Duncan <casey.duncan@gmail.com>2010-12-31 13:48:13 -0700
committerCasey Duncan <casey.duncan@gmail.com>2010-12-31 13:48:13 -0700
commit22642d73056f06a1834dce8970922951fa18c5a1 (patch)
treee56037a9d48e7900b5ec3396b1ae28a2723ca623 /docs/narr/resources.rst
parentf4c5f1a60612749ef36aae01d9a3a559b6acdfff (diff)
parentadfcf6d579496495fb71f8c1af293a953b3a13cb (diff)
downloadpyramid-22642d73056f06a1834dce8970922951fa18c5a1.tar.gz
pyramid-22642d73056f06a1834dce8970922951fa18c5a1.tar.bz2
pyramid-22642d73056f06a1834dce8970922951fa18c5a1.zip
Merge https://github.com/Pylons/pyramid
Diffstat (limited to 'docs/narr/resources.rst')
-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 3b9efe108..b892cf3cd 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()