From ef37355bc33efa9bdb0ab57953e506cee3d135c3 Mon Sep 17 00:00:00 2001 From: Petteri Peltonen Date: Thu, 25 Jan 2024 13:56:23 +0200 Subject: [PATCH] small --- include/bits/algorithms/tile_transform.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/bits/algorithms/tile_transform.hpp b/include/bits/algorithms/tile_transform.hpp index cd21938..83b47e6 100644 --- a/include/bits/algorithms/tile_transform.hpp +++ b/include/bits/algorithms/tile_transform.hpp @@ -34,7 +34,7 @@ static constexpr auto idxhandle_md_to_oned(Span in, Idx center) { }; } -/// @brief applies the input unary tile function to all elements of the input +/// @brief Applies the input unary tile function to all elements of the input /// span and stores the result into the output span. A tile accessor is one /// dimensional. Executed according to policy (not necessarily in order). /// @tparam Dir the direction (index) along which the tile is created. @@ -60,7 +60,7 @@ static constexpr void tile_transform(ExecutionPolicy&& policy, detail::window_transform(policy, i_span, o_span, f, tile); } -/// @brief applies the input unary tile function to all elements of the input +/// @brief Applies the input unary tile function to all elements of the input /// span and stores the result into the output span. A tile accessor is /// one-dimensional. Executed in order. /// @tparam Dir the direction (index) along which the tile is created.