summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to '')
-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)