From 722ffcebe0e86fcb0c7225988daba9d2c5b3df97 Mon Sep 17 00:00:00 2001 From: abhro <5664668+abhro@users.noreply.github.com> Date: Tue, 26 Nov 2024 20:40:25 -0500 Subject: [PATCH] Fix markdown lists in docstring (#359) Markdown lists require all items in list to be indented so the list does not break --- src/utils.jl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/utils.jl b/src/utils.jl index b20a83a..b6cdca5 100644 --- a/src/utils.jl +++ b/src/utils.jl @@ -168,13 +168,13 @@ _row_to_named_tuple(row) = NamedTuple(Row(row)) `ByRow(f)` can be passed two types of arguments: - One or more 1-based `AbstractVector`s of equal length: In this case the returned value -is a vector resulting from applying `f` to elements of passed vectors element-wise. -Function `f` is called exactly once for each element of passed vectors (as opposed to `map` -which assumes for some types of source vectors (e.g. `SparseVector`) that the -wrapped function is pure, and may call the function `f` only once for multiple -equal values. + is a vector resulting from applying `f` to elements of passed vectors element-wise. + Function `f` is called exactly once for each element of passed vectors (as opposed to `map` + which assumes for some types of source vectors (e.g. `SparseVector`) that the + wrapped function is pure, and may call the function `f` only once for multiple + equal values. - A `Tables.ColumnTable` holding 1-based columns of equal length: In this case the function -`f` is passed a `NamedTuple` created for each row of passed table. + `f` is passed a `NamedTuple` created for each row of passed table. The return value of `ByRow(f)` is always a vector.