From 22d0352eb467ab5de4c315d20e7a2ddde21c0776 Mon Sep 17 00:00:00 2001 From: Anthony Calandra Date: Tue, 1 Nov 2016 22:42:14 -0700 Subject: [PATCH] Better phrasing. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }