Skip to content

Commit 366e3c4

Browse files
committed
Fix simple typo: insided -> inside
1 parent 1af2089 commit 366e3c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

patterns/creational/pool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
As we can see, the first string object put in "yam" is USED by the
1616
with statement. But because it is released back into the pool
1717
afterwards it is reused by the explicit call to sample_queue.get().
18-
Same thing happens with "sam", when the ObjectPool created insided the
18+
Same thing happens with "sam", when the ObjectPool created inside the
1919
function is deleted (by the GC) and the object is returned.
2020
2121
*Where is the pattern used practically?

0 commit comments

Comments
 (0)