Skip to content

Commit

Permalink
docs: fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
AlessandroMiola committed Sep 8, 2024
1 parent b32fd4a commit c9811e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/why.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ pl_df_right = pl.DataFrame({"a": [1, 2, 3], "c": [4, 5, 6]})
pl_left_merge = pl_df_left.join(pl_df_right, left_on="b", right_on="c", how="left")

print(pd_left_merge.columns)
print(pl_df_right.columns)
print(pl_left_merge.columns)
```

There are several such subtle difference between the libraries. Writing dataframe-agnostic code is hard!
Expand Down

0 comments on commit c9811e5

Please sign in to comment.