Skip to content

Commit bfc0a84

Browse files
committed
Fix
1 parent 385cbd0 commit bfc0a84

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

singletons/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Different implementations of Singleton pattern
22

3-
1. **singleton_basic** - Basic implementation reminiscent of some lower level languages.
4-
2. **singleton_new** - Overriding the ____new____ method in class and metaclass.
5-
3. **singleton_call** - Overriding the ____call____ method in metaclass.
6-
4. **singleton_deco** - Singleton using method decorators.
7-
5. **singleton_mp** - Shared memory singleton using multiprocessing manager.
3+
1. **singleton_simple** - Simple implementation reminiscent of some lower level languages.
4+
2. **singleton_new** - Overriding the ______new______ method in class and metaclass.
5+
3. **singleton_call** - Overriding the ______call______ method in metaclass.
6+
4. **singleton_deco** - Singleton using method decorators.
7+
5. **singleton_mp** - Shared memory singleton using multiprocessing manager.

0 commit comments

Comments
 (0)