Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7baf3d4

Browse files
committed
Fixed typo reported by Vladimir Marangozov <[email protected]>.
1 parent f7f2e70 commit 7baf3d4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Doc/api.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2510,7 +2510,7 @@ \section{Thread State and the Global Interpreter Lock}
25102510
multi-threaded Python programs, there's a global lock that must be
25112511
held by the current thread before it can safely access Python objects.
25122512
Without the lock, even the simplest operations could cause problems in
2513-
a multi-threaded proram: for example, when two threads simultaneously
2513+
a multi-threaded program: for example, when two threads simultaneously
25142514
increment the reference count of the same object, the reference count
25152515
could end up being incremented only once instead of twice.
25162516

Doc/api/api.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2510,7 +2510,7 @@ \section{Thread State and the Global Interpreter Lock}
25102510
multi-threaded Python programs, there's a global lock that must be
25112511
held by the current thread before it can safely access Python objects.
25122512
Without the lock, even the simplest operations could cause problems in
2513-
a multi-threaded proram: for example, when two threads simultaneously
2513+
a multi-threaded program: for example, when two threads simultaneously
25142514
increment the reference count of the same object, the reference count
25152515
could end up being incremented only once instead of twice.
25162516

0 commit comments

Comments
 (0)