summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBarry Warsaw2010-09-07 10:45:40 -0400
committerBarry Warsaw2010-09-07 10:45:40 -0400
commit9685fa2a1277cf6733940ac012e319dc0f34e8d7 (patch)
treeec349870a16e4ac0797c4466533acf66313898ae /src
parentc9f536cce5d596ac00bac25fe9a0b3021c91381e (diff)
downloadmailman-9685fa2a1277cf6733940ac012e319dc0f34e8d7.tar.gz
mailman-9685fa2a1277cf6733940ac012e319dc0f34e8d7.tar.zst
mailman-9685fa2a1277cf6733940ac012e319dc0f34e8d7.zip
Doc fixes
Diffstat (limited to 'src')
-rw-r--r--src/mailman/docs/NEWS.txt2
-rw-r--r--src/mailman/rest/docs/helpers.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mailman/docs/NEWS.txt b/src/mailman/docs/NEWS.txt
index 8e3cc4e8c..13a6477fd 100644
--- a/src/mailman/docs/NEWS.txt
+++ b/src/mailman/docs/NEWS.txt
@@ -55,7 +55,7 @@ Architecture
option.
Miscellaneous
------------
+-------------
* Various test failure fixes. LP: #543618, LP: #544477
* List-Post header is retained in MIME digest messages. LP: #526143
* Importing from a Mailman 2.1.x list is partially supported.
diff --git a/src/mailman/rest/docs/helpers.txt b/src/mailman/rest/docs/helpers.txt
index b2482b370..a47d67fa8 100644
--- a/src/mailman/rest/docs/helpers.txt
+++ b/src/mailman/rest/docs/helpers.txt
@@ -72,7 +72,7 @@ values.
... POST = {}
>>> FakeRequest.POST = dict(one='1', two='two', three='yes')
-On valid input, the validator can be used as a **kw argument.
+On valid input, the validator can be used as a ``**keyword`` argument.
>>> def print_request(one, two, three):
... print repr(one), repr(two), repr(three)