Skip to content

Commit

Permalink
refactor(rust): Remove From<&&str> for PlSmallStr (#18507)
Browse files Browse the repository at this point in the history
  • Loading branch information
nameexhaustion authored Sep 2, 2024
1 parent 4dc90a9 commit b39d720
Show file tree
Hide file tree
Showing 4 changed files with 109 additions and 117 deletions.
2 changes: 1 addition & 1 deletion crates/polars-core/src/frame/group_by/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ impl<'df> GroupBy<'df> {
/// ```rust
/// # use polars_core::prelude::*;
/// fn example(df: DataFrame) -> PolarsResult<DataFrame> {
/// df.group_by(["date"])?.select(&["temp", "rain"]).mean()
/// df.group_by(["date"])?.select(["temp", "rain"]).mean()
/// }
/// ```
/// Returns:
Expand Down
Loading

0 comments on commit b39d720

Please sign in to comment.