summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-03-14 21:32:57 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2015-03-14 21:32:57 +0200
commitb19542d062603031ab3f4c2f5f485f449ebc46ca (patch)
tree93f22b3830fa1aa8a5aa9ef4efa4d49ea6f38aa1 /Doc
parent41e7244c062e5acbb10582d12d3a03caa892f435 (diff)
downloadcpython-git-b19542d062603031ab3f4c2f5f485f449ebc46ca.tar.gz
Fix minor docs markup errors.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/decimal.rst2
-rw-r--r--Doc/library/profile.rst2
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst
index 059ae7cb16..759be70c9f 100644
--- a/Doc/library/decimal.rst
+++ b/Doc/library/decimal.rst
@@ -261,7 +261,7 @@ For more advanced work, it may be useful to create alternate contexts using the
Context() constructor. To make an alternate active, use the :func:`setcontext`
function.
-In accordance with the standard, the :mod:`Decimal` module provides two ready to
+In accordance with the standard, the :mod:`decimal` module provides two ready to
use standard contexts, :const:`BasicContext` and :const:`ExtendedContext`. The
former is especially useful for debugging because many of the traps are
enabled:
diff --git a/Doc/library/profile.rst b/Doc/library/profile.rst
index f2453f1f85..6a6c4893f8 100644
--- a/Doc/library/profile.rst
+++ b/Doc/library/profile.rst
@@ -638,7 +638,7 @@ you are using :class:`profile.Profile` or :class:`cProfile.Profile`,
pr = cProfile.Profile(your_integer_time_func, 0.001)
- As the :mod:`cProfile.Profile` class cannot be calibrated, custom timer
+ As the :class:`cProfile.Profile` class cannot be calibrated, custom timer
functions should be used with care and should be as fast as possible. For
the best results with a custom timer, it might be necessary to hard-code it
in the C source of the internal :mod:`_lsprof` module.