diff options
author | Julien Palard <julien@palard.fr> | 2019-02-19 14:46:07 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-02-19 14:46:07 (GMT) |
commit | 513e9b4425d09cb0b4889495f9b93dda341b8dd0 (patch) | |
tree | ac462693bb1947c5f43282c74464cafcbd76743a /Doc | |
parent | 5105483acb3aca318304bed056dcfd7e188fe4b5 (diff) | |
download | cpython-513e9b4425d09cb0b4889495f9b93dda341b8dd0.zip cpython-513e9b4425d09cb0b4889495f9b93dda341b8dd0.tar.gz cpython-513e9b4425d09cb0b4889495f9b93dda341b8dd0.tar.bz2 |
Doc: Fix typo. (GH-11315)
From: https://mail.python.org/pipermail/docs/2018-December/038583.html
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/unittest.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index acf9b495..c5d1985 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -27,7 +27,7 @@ object-oriented way: test fixture A :dfn:`test fixture` represents the preparation needed to perform one or more - tests, and any associate cleanup actions. This may involve, for example, + tests, and any associated cleanup actions. This may involve, for example, creating temporary or proxy databases, directories, or starting a server process. |