From 62d248b4533fe0fdb75b45b19113eaaa04e2c6ff Mon Sep 17 00:00:00 2001 From: Paul Date: Fri, 30 Oct 2015 17:28:02 -0500 Subject: [PATCH] Add more description to pack --- fit/capture.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fit/capture.h b/fit/capture.h index 6fec7e7..7af23de 100644 --- a/fit/capture.h +++ b/fit/capture.h @@ -29,11 +29,11 @@ /// Synopsis /// -------- /// -/// // Capture lvalues and rvalues +/// // Capture lvalues by reference and rvalues by value. /// template /// constexpr auto capture(Ts&&... xs); /// -/// // Capture using perfect forwarding +/// // Capture lvalues by reference and rvalue reference by reference /// template /// constexpr auto capture_forward(Ts&&... xs); ///