IG: fix typo

This commit is contained in:
Bas Leijdekkers
2017-01-13 12:03:55 +01:00
parent a1949ae063
commit 00f387c6b6
@@ -1,7 +1,7 @@
<html>
<body>
Reports <b>static</b> variables being lazily initialized
in an non-thread-safe manner. Lazy initialization of <b>static</b> variables should be done
in a non-thread-safe manner. Lazy initialization of <b>static</b> variables should be done
in an appropriate synchronization construct, to prevent different threads from
performing conflicting initialization.
<p>
@@ -10,7 +10,7 @@ which introduces the static holder pattern described in
<a href="http://en.wikipedia.org/wiki/Initialization_on_demand_holder_idiom">
http://en.wikipedia.org/wiki/Initialization_on_demand_holder_idiom
</a>
where the JVM guarantees the thread-safety of such initializations.
where the JVM guarantees the thread safety of such initializations.
<!-- tooltip end -->
<p>