Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
reswqa committed Oct 25, 2023
1 parent 717d123 commit b89ccf3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/polars-ops/src/series/ops/abs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ where
ca.apply_values(|v| v.abs())
}

/// convert numerical values to their absolute value
/// Convert numerical values to their absolute value.
pub fn abs(s: &Series) -> PolarsResult<Series> {
let physical_s = s.to_physical_repr();
use DataType::*;
Expand Down
2 changes: 1 addition & 1 deletion crates/polars-time/src/group_by/dynamic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ fn update_subgroups_idx(
#[cfg(test)]
mod test {
use chrono::prelude::*;
use polars_ops::prelude::abs;
use polars_ops::prelude::*;

use super::*;

Expand Down

0 comments on commit b89ccf3

Please sign in to comment.