将第一个代码块注释中的中文冒号改为英文冒号 (#141)

std::make_unique<Derived>();    //关于std::make_unique 
改为
std::make_unique<Derived>();    //关于std::make_unique
This commit is contained in:
Social_Mean 2023-01-31 11:01:12 +08:00 committed by GitHub
parent 305485e38e
commit 2492e6463b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,7 @@ public:
};
std::unique_ptr<Base> upb = //创建基类指针指向派生类对象
std::make_unique<Derived>(); //关于stdmake_unique
std::make_unique<Derived>(); //关于std::make_unique
… //请参见Item21