summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-06-01 16:43:55 +0000
committerChris McDonough <chrism@agendaless.com>2009-06-01 16:43:55 +0000
commitf348c6e9fff3f4c29378fc35601f22f401f2d2bb (patch)
tree237d9d714ac2025f67b14b1fa47a072ee03e61f4
parent639f597985e131dfdcf47667db665c677f5d4365 (diff)
downloadpyramid-f348c6e9fff3f4c29378fc35601f22f401f2d2bb.tar.gz
pyramid-f348c6e9fff3f4c29378fc35601f22f401f2d2bb.tar.bz2
pyramid-f348c6e9fff3f4c29378fc35601f22f401f2d2bb.zip
- Fix a reference to ``wsgiapp`` in the ``wsgiapp2`` API documentation
within the ``repoze.bfg.wsgi`` module.
-rw-r--r--CHANGES.txt9
-rw-r--r--repoze/bfg/wsgi.py2
2 files changed, 10 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 060953ff5..70c67087d 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,3 +1,12 @@
+Next release
+============
+
+Documentation
+-------------
+
+- Fix a reference to ``wsgiapp`` in the ``wsgiapp2`` API documentation
+ within the ``repoze.bfg.wsgi`` module.
+
0.9 (2009-06-01)
================
diff --git a/repoze/bfg/wsgi.py b/repoze/bfg/wsgi.py
index a04be9e97..bdf7057aa 100644
--- a/repoze/bfg/wsgi.py
+++ b/repoze/bfg/wsgi.py
@@ -48,7 +48,7 @@ def wsgiapp2(wrapped):
E.g.::
- @wsgiapp
+ @wsgiapp2
def hello_world(environ, start_response):
body = 'Hello world'
start_response('200 OK', [ ('Content-Type', 'text/plain'),