Skip to content

Commit

Permalink
Fix typos in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Thoemi09 authored and Wentzell committed Dec 11, 2024
1 parent 37e7653 commit 29d822a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions c++/nda/map.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,8 @@ namespace nda {
* @return Result of the functor applied to the scalar arguments.
*/
template <Scalar T0, Scalar... Ts>
auto operator()(T0 a0, Ts... as) const {
return f(a0, as...);
auto operator()(T0 t0, Ts... ts) const {
return f(t0, ts...);
}
};

Expand Down

0 comments on commit 29d822a

Please sign in to comment.