Small typo (the --> there)

This commit is contained in:
Matthew Dean 2014-12-01 23:51:00 -05:00
parent 710d31b2a2
commit 424449e2f5

View File

@ -52,7 +52,7 @@
![alt text](https://github.com/iluwatar/java-design-patterns/blob/master/singleton/etc/singleton_1.png "Singleton")
**Applicability:** Use the Singleton pattern when
* the must be exactly one instance of a class, and it must be accessible to clients from a well-known access point
* there must be exactly one instance of a class, and it must be accessible to clients from a well-known access point
* when the sole instance should be extensible by subclassing, and clients should be able to use an extended instance without modifying their code
**Typical Use Case:**