summaryrefslogtreecommitdiffstats
path: root/Doc/library/crypt.rst
diff options
context:
space:
mode:
authorAndre Delfino <adelfino@gmail.com>2018-12-05 19:45:30 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2018-12-05 19:45:30 (GMT)
commit55f41e45b4318cbe19209f5144641344d0049fb8 (patch)
treeec0b6422a595cf8cfbae67d0525f6644b9314833 /Doc/library/crypt.rst
parent1ce853f37783575e2b3aaa159ddcebc8660830ef (diff)
downloadcpython-55f41e45b4318cbe19209f5144641344d0049fb8.zip
cpython-55f41e45b4318cbe19209f5144641344d0049fb8.tar.gz
cpython-55f41e45b4318cbe19209f5144641344d0049fb8.tar.bz2
Correct a couple of unbalanced parenthesis. (GH-10779)
Diffstat (limited to 'Doc/library/crypt.rst')
-rw-r--r--Doc/library/crypt.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/crypt.rst b/Doc/library/crypt.rst
index dd62cb3..43d4b5b 100644
--- a/Doc/library/crypt.rst
+++ b/Doc/library/crypt.rst
@@ -91,7 +91,7 @@ The :mod:`crypt` module defines the following functions:
may be available on all platforms), or a full encrypted password
including salt, as returned by this function. If *salt* is not
provided, the strongest method will be used (as returned by
- :func:`methods`.
+ :func:`methods`).
Checking a password is usually done by passing the plain-text password
as *word* and the full results of a previous :func:`crypt` call,