Skip to content

Commit 708d512

Browse files
authored
Fix spacing in doctest in utils.jl
Signed-off-by: abhro <5664668+abhro@users.noreply.github.com>
1 parent 9d9cfc6 commit 708d512

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/utils.jl

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -206,14 +206,13 @@ julia> Tables.ByRow(x -> x.a)((a=1:2, b=3:4))
206206
1
207207
2
208208
209-
julia> Tables.ByRow(x -> (a=x.a*2, b=sin(x.b), c=x.c))((a=[1, 2, 3],
210-
b=[1.2, 3.4, 5.6],
211-
c=["a", "b", "c"]))
209+
julia> Tables.ByRow(x -> (a=x.a*2, b=sin(x.b), c=x.c))((a=[1, 2, 3],
210+
b=[1.2, 3.4, 5.6],
211+
c=["a", "b", "c"]))
212212
3-element Vector{NamedTuple{(:a, :b, :c), Tuple{Int64, Float64, String}}}:
213213
(a = 2, b = 0.9320390859672263, c = "a")
214214
(a = 4, b = -0.2555411020268312, c = "b")
215215
(a = 6, b = -0.6312666378723216, c = "c")
216-
217216
```
218217
"""
219218
struct ByRow{T} <: Function

0 commit comments

Comments
 (0)