From bf8d9fb99a295bca57eee006ac2d9ee201c0afe6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=A2=93=E6=B7=B3?= <2941125807@qq.com> Date: Thu, 6 Jun 2024 21:17:41 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=E6=96=87=E7=AB=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/_posts/DesignPatterns/Singleton.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_posts/DesignPatterns/Singleton.md b/source/_posts/DesignPatterns/Singleton.md index 60f1b99..8f65334 100644 --- a/source/_posts/DesignPatterns/Singleton.md +++ b/source/_posts/DesignPatterns/Singleton.md @@ -7,7 +7,7 @@ tags: categories: Design Patterns --- **Singleton** is a creational design pattern that lets you ensure that a class has only one instance, while providing a global access point to this instance. - +
## Problem