Skip to content

Commit b51a973

Browse files
authored
fix typos in docs (#3384)
1 parent 0e2d3df commit b51a973

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/abstractdataframe/abstractdataframe.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ function rename!(df::AbstractDataFrame,
254254
return df
255255
end
256256

257-
# needed because of dispach ambiguity
257+
# needed because of dispatch ambiguity
258258
function rename!(df::AbstractDataFrame)
259259
_drop_all_nonnote_metadata!(parent(df))
260260
return df

test/select.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2853,7 +2853,7 @@ end
28532853
DataFrame(x=[missing, missing, missing])
28542854
@test combine(table, AsTable([p, q]) => ByRow(medianskipmissing) => :x) ==
28552855
DataFrame(x=[1, 2, 4])
2856-
# a bit surpriting how non-broadcasted and broadcasted minimum works
2856+
# a bit surprising how non-broadcasted and broadcasted minimum works
28572857
@test combine(table, AsTable([p, q]) => minimum => :x) ==
28582858
DataFrame(x=[1, 2, 4])
28592859
@test combine(table, AsTable([p, q]) => ByRow(minimum) => :x)

0 commit comments

Comments
 (0)