From 424449e2f54ed46e23c67a8b999ce09743967859 Mon Sep 17 00:00:00 2001 From: Matthew Dean Date: Mon, 1 Dec 2014 23:51:00 -0500 Subject: [PATCH] Small typo (the --> there) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 83a18e83c..67c07f62d 100644 --- a/README.md +++ b/README.md @@ -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:**