Skip to content

Commit

Permalink
Fix markdown lists in docstring
Browse files Browse the repository at this point in the history
Markdown lists require all items in list to be indented so the list does not break
  • Loading branch information
abhro committed Nov 26, 2024
1 parent 834b093 commit dd9fee4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit dd9fee4

Please sign in to comment.