Skip to content

Commit

Permalink
fix: Update eager join doctest on multiple columns (#20542)
Browse files Browse the repository at this point in the history
  • Loading branch information
jqnatividad authored Jan 3, 2025
1 parent 9ce1c07 commit 7c64640
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 7c64640

Please sign in to comment.