summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2013-09-22 14:34:10 -0400
committerChris McDonough <chrism@plope.com>2013-09-22 14:34:10 -0400
commit5e8eadb86aeede3c7c27d77a1be4c4d23c951252 (patch)
treecc6a3b06ad0f828472b5800f075d33c068d38079
parent7a3345619d7f26bcfb2371de53c2ecf85da41534 (diff)
downloadpyramid-5e8eadb86aeede3c7c27d77a1be4c4d23c951252.tar.gz
pyramid-5e8eadb86aeede3c7c27d77a1be4c4d23c951252.tar.bz2
pyramid-5e8eadb86aeede3c7c27d77a1be4c4d23c951252.zip
fix rst rendering of changes
-rw-r--r--CHANGES.txt6
1 files changed, 2 insertions, 4 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 8295a98c9..4c9ba4863 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -247,7 +247,7 @@ Features
The above example will ensure that the view is called if the request method
is not POST (at least if no other view is more specific).
- The :class:`pyramid.config.not_` class can be used against any value that is
+ The ``pyramid.config.not_`` class can be used against any value that is
a predicate value passed in any of these contexts:
- ``pyramid.config.Configurator.add_view``
@@ -316,9 +316,7 @@ Features
In the past, only the most specific type containing views would be checked
and if no matching view could be found then a PredicateMismatch would be
raised. Now predicate mismatches don't hide valid views registered on
- super-types. Here's an example that now works:
-
- .. code-block:: python
+ super-types. Here's an example that now works::
class IResource(Interface):