From e231cd8d1a859cfe17612adbf1b77b44e6381467 Mon Sep 17 00:00:00 2001 From: Fedor Date: Wed, 2 Sep 2020 12:32:02 +0300 Subject: [PATCH] Remove unnecessary word from text --- singleton/src/main/java/com/iluwatar/singleton/App.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/singleton/src/main/java/com/iluwatar/singleton/App.java b/singleton/src/main/java/com/iluwatar/singleton/App.java index 319e077ef..2cea2edd3 100644 --- a/singleton/src/main/java/com/iluwatar/singleton/App.java +++ b/singleton/src/main/java/com/iluwatar/singleton/App.java @@ -33,7 +33,7 @@ import org.slf4j.LoggerFactory; *

One of the risks of this pattern is that bugs resulting from setting a singleton up in a * distributed environment can be tricky to debug, since it will work fine if you debug with a * single classloader. Additionally, these problems can crop up a while after the implementation of - * a singleton, since they may start out synchronous and only become async with time, so you it may + * a singleton, since they may start out synchronous and only become async with time, so it may * not be clear why you are seeing certain changes in behaviour.

* *

There are many ways to implement the Singleton. The first one is the eagerly initialized