Skip to content

Commit

Permalink
fix deprecated example in the docs for innerjoin
Browse files Browse the repository at this point in the history
  • Loading branch information
bkamins committed Jul 22, 2020
1 parent ddba103 commit 7a73a9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/man/joins.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ julia> b = DataFrame(Location = ["Amsterdam", "London", "London", "New York", "N
│ 4 │ New York │ Doctor │ d │
│ 5 │ New York │ Doctor │ e │
julia> innerjoin(a, b, on = [(:City, :Location), (:Job, :Work)])
julia> innerjoin(a, b, on = [:City => :Location, :Job => :Work])
9×4 DataFrame
│ Row │ City │ Job │ Category │ Name │
│ │ String │ String │ Int64 │ String │
Expand Down

0 comments on commit 7a73a9e

Please sign in to comment.