summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Foord <michael@voidspace.org.uk>2012-01-23 02:35:25 +0000
committerMichael Foord <michael@voidspace.org.uk>2012-01-23 02:35:25 +0000
commitca4e51f57f8f749fac5f0e18a98f90d45003c3a8 (patch)
tree28903a699f78ec126aba6a5e950dd2ade376142c
parent0bee3495c70b290c0f4f7107516ec6910416ba42 (diff)
downloadmock-ca4e51f57f8f749fac5f0e18a98f90d45003c3a8.tar.gz
Minor doc update
-rw-r--r--docs/changelog.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/changelog.txt b/docs/changelog.txt
index 83b1e69..37ed56e 100644
--- a/docs/changelog.txt
+++ b/docs/changelog.txt
@@ -8,7 +8,7 @@ CHANGELOG
2012/XX/XX Version 0.8.0
------------------------
-The only change since 0.8rc2 is:
+The only changes since 0.8rc2 are:
* Improved repr of :data:`sentinel` objects
* :data:`ANY` can be used for comparisons against :data:`call` objects
@@ -43,9 +43,9 @@ mock 0.8.0 is the last version that will support Python 2.4.
without a `__call__` method
* Addition of :meth:`~Mock.mock_add_spec` method for adding (or changing) a
spec on an existing mock
-* Protocol methods on `MagicMock` are magic mocks, and are created lazily on
- first lookup. This means the result of calling a protocol method is a
- `MagicMock` instead of a `Mock` as it was previously
+* Protocol methods on :class:`MagicMock` are magic mocks, and are created
+ lazily on first lookup. This means the result of calling a protocol method is
+ a `MagicMock` instead of a `Mock` as it was previously
* Addition of :meth:`~Mock.attach_mock` method
* Added :data:`ANY` for ignoring arguments in :meth:`~Mock.assert_called_with`
calls