From f9d0033a4adcb8008a43320d92f9b484adc19a96 Mon Sep 17 00:00:00 2001 From: Thomas Hahn Date: Mon, 9 Dec 2024 16:01:41 -0500 Subject: [PATCH] Fix typos in docs --- c++/nda/map.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/c++/nda/map.hpp b/c++/nda/map.hpp index 0f512cf1..c29d8db9 100644 --- a/c++/nda/map.hpp +++ b/c++/nda/map.hpp @@ -195,8 +195,8 @@ namespace nda { * @return Result of the functor applied to the scalar arguments. */ template - auto operator()(T0 a0, Ts... as) const { - return f(a0, as...); + auto operator()(T0 t0, Ts... ts) const { + return f(t0, ts...); } };