summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Yoshida <dynkin@gmail.com>2006-09-30 05:22:23 +0000
committerGeorge Yoshida <dynkin@gmail.com>2006-09-30 05:22:23 +0000
commitbd42596179b025a584f9166a8f93d255a0abd763 (patch)
treef7486a377d1af4272650dd9df4ebe7a37b60c463
parenta4103a3248c9f647e9530ebbfcdac8eb700c9433 (diff)
downloadcpython-git-bd42596179b025a584f9166a8f93d255a0abd763.tar.gz
SF bug #1567976 : fix typo(backport from r52048)
Since this paragraph is about exception's message attribute(2.5 feature), I will not backport to 2.4 branch.
-rw-r--r--Doc/tut/tut.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex
index 554d094fa8..bb24a38f90 100644
--- a/Doc/tut/tut.tex
+++ b/Doc/tut/tut.tex
@@ -3539,7 +3539,7 @@ be accessed or printed directly without having to reference \code{.args}.
But use of \code{.args} is discouraged. Instead, the preferred use is to pass
a single argument to an exception (which can be a tuple if multiple arguments
-are needed) and have it bound to the \code{message} attribute. One my also
+are needed) and have it bound to the \code{message} attribute. One may also
instantiate an exception first before raising it and add any attributes to it
as desired.