diff --git a/README.md b/README.md index c0f0a1a..a36b375 100644 --- a/README.md +++ b/README.md @@ -365,7 +365,7 @@ auto f(const int& i) { return i; } -// Forward `const int&` as the return type. +// Return type is `const int&`. decltype(auto) g(const int& i) { return i; }