summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1998-02-20 00:45:52 (GMT)
committerFred Drake <fdrake@acm.org>1998-02-20 00:45:52 (GMT)
commit7baf3d4ea739129762d69d1c7f3aad18f8e6e8d8 (patch)
treec3b7bad6369335f514f7bbc96215481e2ca25ecf /Doc
parentf7f2e70fd410095353042e35ff82f696c8bdb292 (diff)
downloadcpython-7baf3d4ea739129762d69d1c7f3aad18f8e6e8d8.zip
cpython-7baf3d4ea739129762d69d1c7f3aad18f8e6e8d8.tar.gz
cpython-7baf3d4ea739129762d69d1c7f3aad18f8e6e8d8.tar.bz2
Fixed typo reported by Vladimir Marangozov <Vladimir.Marangozov@imag.fr>.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/api.tex2
-rw-r--r--Doc/api/api.tex2
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/api.tex b/Doc/api.tex
index 068add8..ade73cf 100644
--- a/Doc/api.tex
+++ b/Doc/api.tex
@@ -2510,7 +2510,7 @@ The Python interpreter is not fully thread safe. In order to support
multi-threaded Python programs, there's a global lock that must be
held by the current thread before it can safely access Python objects.
Without the lock, even the simplest operations could cause problems in
-a multi-threaded proram: for example, when two threads simultaneously
+a multi-threaded program: for example, when two threads simultaneously
increment the reference count of the same object, the reference count
could end up being incremented only once instead of twice.
diff --git a/Doc/api/api.tex b/Doc/api/api.tex
index 068add8..ade73cf 100644
--- a/Doc/api/api.tex
+++ b/Doc/api/api.tex
@@ -2510,7 +2510,7 @@ The Python interpreter is not fully thread safe. In order to support
multi-threaded Python programs, there's a global lock that must be
held by the current thread before it can safely access Python objects.
Without the lock, even the simplest operations could cause problems in
-a multi-threaded proram: for example, when two threads simultaneously
+a multi-threaded program: for example, when two threads simultaneously
increment the reference count of the same object, the reference count
could end up being incremented only once instead of twice.