From 4415a0377a82e1ffbc18bc1c6f0c4138a1e55c54 Mon Sep 17 00:00:00 2001 From: Ryan Lee Date: Mon, 13 Apr 2020 00:17:41 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3Typo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 1.DeducingTypes/item3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1.DeducingTypes/item3.md b/1.DeducingTypes/item3.md index 7e987e2..e79f58a 100644 --- a/1.DeducingTypes/item3.md +++ b/1.DeducingTypes/item3.md @@ -12,7 +12,7 @@ bool f(const Widget& w); //decltype(w)是const Widget& struct Point{ int x; //decltype(Point::x)是int - int y; //decltype(Point:;y)是int + int y; //decltype(Point::y)是int }; template