Skip to content

Commit

Permalink
fix: update eager join doctest on multiple columns
Browse files Browse the repository at this point in the history
  • Loading branch information
jqnatividad committed Jan 3, 2025
1 parent ca36b66 commit e26abb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/polars/src/docs/eager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@
//! temp.full_join(&rain, ["days"], ["days"]);
//!
//! // join on multiple columns
//! temp.join(&rain, vec!["days", "other"], vec!["days", "other"], JoinArgs::new(JoinType::Left));
//! temp.join(&rain, vec!["days", "other"], vec!["days", "other"], JoinArgs::new(JoinType::Left), None);
//!
//! # Ok(())
//! # }
Expand Down

0 comments on commit e26abb5

Please sign in to comment.