summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2014-02-22 11:52:59 -0500
committerChris McDonough <chrism@plope.com>2014-02-22 11:52:59 -0500
commit120a0d760e10baf9cd51c8c5c545c54a9b5248b8 (patch)
treeaec27c3d56c818fc82332457953458219a92668a /docs
parente31a925487fb1b3a09e2a7b2dff55b7e629b74d5 (diff)
parent494d79cf29f0899d79b9deee8dcc5c45db5b0628 (diff)
downloadwebob-120a0d760e10baf9cd51c8c5c545c54a9b5248b8.tar.gz
Merge pull request #134 from chris-morgan/patch-1
Fix a formatting error
Diffstat (limited to 'docs')
-rw-r--r--docs/index.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/index.txt b/docs/index.txt
index 9909c61..7ce4f27 100644
--- a/docs/index.txt
+++ b/docs/index.txt
@@ -167,8 +167,8 @@ values if the request encoding/charset is provided. The client *can*
indicate the charset with something like ``Content-Type:
application/x-www-form-urlencoded; charset=utf8``, but browsers seldom
set this. You can set the charset with ``req.charset = 'utf8'``, or
-during instantiation with ``Request(environ, charset='utf8'). If you
-subclass ``Request`` you can also set ``charset`` as a class-level
+during instantiation with ``Request(environ, charset='utf8')``. If
+you subclass ``Request`` you can also set ``charset`` as a class-level
attribute.
If it is set, then ``req.POST``, ``req.GET``, ``req.params``, and