summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2012-04-27 11:20:08 -0400
committerChris McDonough <chrism@plope.com>2012-04-27 11:20:08 -0400
commit561a443369bea131fcdbf0476c7e6a4935638d62 (patch)
treecf4a4751bb55ee53b8316ac2545054e2205fad42
parent2bae012e5e108c0a9a584aea0611b6a29e6027b0 (diff)
downloadpyramid-561a443369bea131fcdbf0476c7e6a4935638d62.tar.gz
pyramid-561a443369bea131fcdbf0476c7e6a4935638d62.tar.bz2
pyramid-561a443369bea131fcdbf0476c7e6a4935638d62.zip
fix example
-rw-r--r--CHANGES.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index b8d42ba6f..67b03d59b 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -20,7 +20,7 @@ Features
- As of this release, the ``request_method`` predicate, when used, will also
imply that ``HEAD`` is implied when you use ``GET``. For example, using
``@view_config(request_method='GET')`` is equivalent to using
- ``@view_config(request_method='HEAD')``. Using
+ ``@view_config(request_method=('GET', 'HEAD'))``. Using
``@view_config(request_method=('GET', 'POST')`` is equivalent to using
``@view_config(request_method=('GET', 'HEAD', 'POST')``. This is because
HEAD is a variant of GET that omits the body, and WebOb has special support