diff --git "a/pages/\320\250\320\260\320\261\320\273\320\276\320\275\321\213-\320\277\321\200\320\276\320\265\320\272\321\202\320\270\321\200\320\276\320\262\320\260\320\275\320\270\321\217.md" "b/pages/\320\250\320\260\320\261\320\273\320\276\320\275\321\213-\320\277\321\200\320\276\320\265\320\272\321\202\320\270\321\200\320\276\320\262\320\260\320\275\320\270\321\217.md" index 1268df4..56be152 100644 --- "a/pages/\320\250\320\260\320\261\320\273\320\276\320\275\321\213-\320\277\321\200\320\276\320\265\320\272\321\202\320\270\321\200\320\276\320\262\320\260\320\275\320\270\321\217.md" +++ "b/pages/\320\250\320\260\320\261\320\273\320\276\320\275\321\213-\320\277\321\200\320\276\320\265\320\272\321\202\320\270\321\200\320\276\320\262\320\260\320\275\320\270\321\217.md" @@ -127,7 +127,7 @@ $obj = Singleton::getInstance(); \var_dump($obj === Singleton::getInstance()); // bool(true) $anotherObj = SingletonChild::getInstance(); -\var_dump($anotherObj === Singleton::getInstance()); // bool(false) +\var_dump($anotherObj === Singleton::getInstance()); // bool(true) \var_dump($anotherObj === SingletonChild::getInstance()); // bool(true) {% endhighlight %}