removed extra "is" from the javadoc of InitializingOnDemandHolderIdiom class

This commit is contained in:
Sumit Yadav 2016-08-03 15:02:46 +05:30
parent 547d798528
commit 94c3a2caf3

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>