@@ -659,7 +659,7 @@ namespace xt
659659 template <std::size_t N, class E >
660660 inline auto atleast_Nd (E&& e)
661661 {
662- xstrided_slice_vector sv ((std::max)(e.dimension (), N), all ());
662+ xstrided_slice_vector sv ((std::max) (e.dimension (), N), all ());
663663 if (e.dimension () < N)
664664 {
665665 std::size_t i = 0 ;
@@ -1099,7 +1099,7 @@ namespace xt
10991099 * @param repeats The number of repetition of each elements.
11001100 * @p repeats is broadcasted to fit the shape of the given @p axis.
11011101 * @param axis the axis along which to repeat the value
1102- * @return an expression with the same shape as ``e``, except along the given ``axis``
1102+ * @return an expression with the same shape as ``e``, except along the given ``axis``
11031103 */
11041104 template <class E >
11051105 inline auto repeat (E&& e, std::size_t repeats, std::size_t axis)
@@ -1119,7 +1119,7 @@ namespace xt
11191119 * The size of @p repeats must match the shape of the given @p axis.
11201120 * @param axis the axis along which to repeat the value
11211121 *
1122- * @return an expression with the same shape as ``e``, except along the given ``axis``
1122+ * @return an expression with the same shape as ``e``, except along the given ``axis``
11231123 */
11241124 template <class E >
11251125 inline auto repeat (E&& e, const std::vector<std::size_t >& repeats, std::size_t axis)
@@ -1135,7 +1135,7 @@ namespace xt
11351135 * @param repeats The number of repetition of each elements.
11361136 * The size of @p repeats must match the shape of the given @p axis.
11371137 * @param axis the axis along which to repeat the value
1138- * @return an expression with the same shape as ``e``, except along the given ``axis``
1138+ * @return an expression with the same shape as ``e``, except along the given ``axis``
11391139 */
11401140 template <class E >
11411141 inline auto repeat (E&& e, std::vector<std::size_t >&& repeats, std::size_t axis)
0 commit comments