summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2010-04-30 01:02:15 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2010-04-30 01:02:15 (GMT)
commit545336673e148f9028093f97d118931d02b159ab (patch)
tree0cd30fecb6193396bbe9f03bab41ce8ea4f2c9d5 /Doc
parent3ded421fd56b8b6b4e4d5c70c50737a757752014 (diff)
downloadcpython-545336673e148f9028093f97d118931d02b159ab.zip
cpython-545336673e148f9028093f97d118931d02b159ab.tar.gz
cpython-545336673e148f9028093f97d118931d02b159ab.tar.bz2
Fix typos
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/calendar.rst2
-rw-r--r--Doc/library/unittest.rst2
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/calendar.rst b/Doc/library/calendar.rst
index d650ff4..2f11aad 100644
--- a/Doc/library/calendar.rst
+++ b/Doc/library/calendar.rst
@@ -16,7 +16,7 @@ the week to Sunday (6) or to any other weekday. Parameters that specify dates
are given as integers. For related
functionality, see also the :mod:`datetime` and :mod:`time` modules.
-Most of these functions and classses rely on the :mod:`datetime` module which
+Most of these functions and classes rely on the :mod:`datetime` module which
uses an idealized calendar, the current Gregorian calendar indefinitely extended
in both directions. This matches the definition of the "proleptic Gregorian"
calendar in Dershowitz and Reingold's book "Calendrical Calculations", where
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst
index 4d95adf..075c033 100644
--- a/Doc/library/unittest.rst
+++ b/Doc/library/unittest.rst
@@ -273,7 +273,7 @@ The ``discover`` sub-command has the following options:
-t directory Top level directory of project (default to
start directory)
-The -s, -p, & -t options can be passsed in as positional arguments. The
+The -s, -p, & -t options can be passed in as positional arguments. The
following two command lines are equivalent::
python -m unittest discover -s project_directory -p '*_test.py'