Skip to content

Commit ce07b04

Browse files
committed
Regenerate Singleton HTML.
1 parent 389e6d4 commit ce07b04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

html/singleton.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ <h3><a href="#it-solves-two-problems-even-when-you-just-have-one" name="it-solve
327327
signature and distracts from the intent of the code.</p>
328328
<p>The obvious fix is to make our <code>Log</code> class a singleton. Every function can then
329329
go straight to the class itself to get an instance. But when we do that, we
330-
inadvertently acquire a strange little restriction. All of the sudden, we can no
330+
inadvertently acquire a strange little restriction. All of a sudden, we can no
331331
longer create more than one logger.</p>
332332
<p>At first, this isn&#8217;t a problem. We&#8217;re writing only a single log file, so we only
333333
need one instance anyway. Then, deep in the development cycle, we run into

0 commit comments

Comments
 (0)