diff --git a/README.md b/README.md index bcb6ac7..ac6d4dc 100644 --- a/README.md +++ b/README.md @@ -697,7 +697,7 @@ decltype(c) d = a; // `decltype(c)` is `const int&` decltype(123) e = 123; // `decltype(123)` is `int` int&& f = 1; // `f` is declared as type `int&&` decltype(f) g = 1; // `decltype(f) is `int&&` -decltype((a)) h = x; // `decltype((a))` is int& +decltype((a)) h = g; // `decltype((a))` is int& ``` ```c++ template