Skip to content

Commit

Permalink
fix typos in docs (JuliaData#3384)
Browse files Browse the repository at this point in the history
  • Loading branch information
spaette committed Oct 6, 2023
1 parent 0e2d3df commit b51a973
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/abstractdataframe/abstractdataframe.jl
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ function rename!(df::AbstractDataFrame,
return df
end

# needed because of dispach ambiguity
# needed because of dispatch ambiguity
function rename!(df::AbstractDataFrame)
_drop_all_nonnote_metadata!(parent(df))
return df
Expand Down
2 changes: 1 addition & 1 deletion test/select.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2853,7 +2853,7 @@ end
DataFrame(x=[missing, missing, missing])
@test combine(table, AsTable([p, q]) => ByRow(medianskipmissing) => :x) ==
DataFrame(x=[1, 2, 4])
# a bit surpriting how non-broadcasted and broadcasted minimum works
# a bit surprising how non-broadcasted and broadcasted minimum works
@test combine(table, AsTable([p, q]) => minimum => :x) ==
DataFrame(x=[1, 2, 4])
@test combine(table, AsTable([p, q]) => ByRow(minimum) => :x)
Expand Down

0 comments on commit b51a973

Please sign in to comment.