fixed typo in Singleton

This commit is contained in:
Dominik Liebler 2013-05-08 07:51:19 +03:00
parent 1d554ddce3
commit ceb6a3eeb9

View File

@ -6,7 +6,7 @@ namespace DesignPatterns;
* Singleton pattern * Singleton pattern
* *
* Purpose: * Purpose:
* to have only one instance of this object in the application, that will handle all calls * to have only one instance of this object in the application that will handle all calls
* *
* Examples: * Examples:
* - DB Connector * - DB Connector