From 2a2da063163fecef0ee5f6b4b06b1592949126f8 Mon Sep 17 00:00:00 2001 From: bin Date: Tue, 6 Jul 2021 11:34:03 +0800 Subject: [PATCH] fix typo:doubel -> double --- basic_content/decltype/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basic_content/decltype/README.md b/basic_content/decltype/README.md index 02d38f4..1f52a0b 100644 --- a/basic_content/decltype/README.md +++ b/basic_content/decltype/README.md @@ -103,7 +103,7 @@ decltype (arr) var1; //int 标记符表达式 decltype (ptr) var2;//int * 标记符表达式 -decltype(s.d) var3;//doubel 成员访问表达式 +decltype(s.d) var3;//double 成员访问表达式 //decltype(Overloaded) var4;//重载函数。编译错误。