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); ///