Skip to content

Commit

Permalink
fix doc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
coastalwhite committed Sep 13, 2024
1 parent 8198662 commit 581f94d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/polars-core/src/frame/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2065,7 +2065,7 @@ impl DataFrame {
/// let mut df = DataFrame::new(vec![s0, s1])?;
///
/// // Add 32 to get lowercase ascii values
/// df.apply_at_idx(1, |s| s + 32);
/// df.apply_at_idx(1, |s| (s + 32).unwrap());
/// # Ok::<(), PolarsError>(())
/// ```
/// Results in:
Expand Down

0 comments on commit 581f94d

Please sign in to comment.