Use headings instead of bold text in index.md #238

This commit is contained in:
Jeroen Meulemeester
2016-01-03 21:14:30 +01:00
parent b6beffec2e
commit 3d642cdad7
66 changed files with 373 additions and 233 deletions

View File

@@ -9,11 +9,13 @@ tags:
- Difficulty-Beginner
---
**Intent:** Ensure a class only has limited number of instances, and provide a
## Intent
Ensure a class only has limited number of instances, and provide a
global point of access to them.
![alt text](./etc/multiton.png "Multiton")
**Applicability:** Use the Multiton pattern when
## Applicability
Use the Multiton pattern when
* there must be specific number of instances of a class, and they must be accessible to clients from a well-known access point