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