Skip to content

Commit 1f0f522

Browse files
authored
Merge pull request #314 from timgates42/bugfix/typo_inside
Fix simple typo: insided -> inside
2 parents 7bc5aec + 366e3c4 commit 1f0f522

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)