Merge pull request #476 from sumityadav6541/master

removed extra "is" from javadoc comments
This commit is contained in:
Narendra Pathai 2016-08-04 17:47:37 +05:30 committed by GitHub
commit 55028a49dc

View File

@ -26,7 +26,7 @@ package com.iluwatar.singleton;
* The Initialize-on-demand-holder idiom is a secure way of creating a lazy initialized singleton
* object in Java.
* <p>
* The technique is is as lazy as possible and works in all known versions of Java. It takes advantage
* The technique is as lazy as possible and works in all known versions of Java. It takes advantage
* of language guarantees about class initialization, and will therefore work correctly in all
* Java-compliant compilers and virtual machines.
* <p>