← Back to team overview

testtools-dev team mailing list archive

[Merge] lp:~rvb/testtools/testtools-doc-fixes into lp:testtools

 

Raphaël Badin has proposed merging lp:~rvb/testtools/testtools-doc-fixes into lp:testtools.

Requested reviews:
  testtools committers (testtools-committers)

For more details, see:
https://code.launchpad.net/~rvb/testtools/testtools-doc-fixes/+merge/103878

Minor doc fixes.
-- 
https://code.launchpad.net/~rvb/testtools/testtools-doc-fixes/+merge/103878
Your team testtools developers is subscribed to branch lp:testtools.
=== modified file 'testtools/matchers.py'
--- testtools/matchers.py	2011-12-21 01:17:35 +0000
+++ testtools/matchers.py	2012-04-27 13:43:27 +0000
@@ -642,7 +642,7 @@
 
 
 class Contains(Matcher):
-    """Checks whether something is container in another thing."""
+    """Checks whether something is contained in another thing."""
 
     def __init__(self, needle):
         """Create a Contains Matcher.
@@ -684,7 +684,7 @@
 
 
 class EndsWith(Matcher):
-    """Checks whether one string starts with another."""
+    """Checks whether one string ends with another."""
 
     def __init__(self, expected):
         """Create a EndsWith Matcher.


Follow ups