summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorCarlos de la Guardia <cguardia@yahoo.com>2010-03-16 18:04:53 +0000
committerCarlos de la Guardia <cguardia@yahoo.com>2010-03-16 18:04:53 +0000
commitb5cca9dbb5b922036744fe6bfa47eeb00afd347b (patch)
tree1ef82a454653c6a4c3640ce4357e79aa9872ca7c /docs
parent653216764e7de55ab6ab76038bd8cd849cf6ab06 (diff)
downloadpyramid-b5cca9dbb5b922036744fe6bfa47eeb00afd347b.tar.gz
pyramid-b5cca9dbb5b922036744fe6bfa47eeb00afd347b.tar.bz2
pyramid-b5cca9dbb5b922036744fe6bfa47eeb00afd347b.zip
a couple of code blocks had missing colons and didn't show up in the output
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/views.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/narr/views.rst b/docs/narr/views.rst
index eba9e60da..637058a05 100644
--- a/docs/narr/views.rst
+++ b/docs/narr/views.rst
@@ -376,7 +376,7 @@ representation of the dictionary:
The body of the response returned by such a view will be a string
representing the ``str()`` serialization of the return value:
-.. code-block: python
+.. code-block:: python
:linenos:
{'content': 'Hello!'}
@@ -414,7 +414,7 @@ view will render the returned dictionary to a JSON serialization:
The body of the response returned by such a view will be a string
representing the JSON serialization of the return value:
-.. code-block: python
+.. code-block:: python
:linenos:
'{"content": "Hello!"}'