summaryrefslogtreecommitdiffstats
path: root/Doc/ref
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2002-06-25 04:04:14 (GMT)
committerRaymond Hettinger <python@rcn.com>2002-06-25 04:04:14 (GMT)
commit7fd9ced4caa0b45eda4360244e83605f553a4f77 (patch)
tree4e2c3398e29f05f33ae168ef77a07a4d8b635721 /Doc/ref
parentf8096fbba1f7aa35dd03580b465242eeffcdea83 (diff)
downloadcpython-7fd9ced4caa0b45eda4360244e83605f553a4f77.zip
cpython-7fd9ced4caa0b45eda4360244e83605f553a4f77.tar.gz
cpython-7fd9ced4caa0b45eda4360244e83605f553a4f77.tar.bz2
Minor English grammar correction
Diffstat (limited to 'Doc/ref')
-rw-r--r--Doc/ref/ref5.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ref/ref5.tex b/Doc/ref/ref5.tex
index 25bcdbf..194d2c8 100644
--- a/Doc/ref/ref5.tex
+++ b/Doc/ref/ref5.tex
@@ -971,7 +971,7 @@ Lambda forms (lambda expressions) have the same syntactic position as
expressions. They are a shorthand to create anonymous functions; the
expression \code{lambda \var{arguments}: \var{expression}}
yields a function object. The unnamed object behaves like a function
-object define with
+object defined with
\begin{verbatim}
def name(arguments):