Skip to content

Commit

Permalink
doc ref again
Browse files Browse the repository at this point in the history
  • Loading branch information
coastalwhite committed Jan 10, 2025
1 parent 72d7d89 commit d681241
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions crates/polars-core/src/series/series_trait.rs
Original file line number Diff line number Diff line change
Expand Up @@ -563,12 +563,11 @@ pub trait SeriesTrait:
invalid_operation_panic!(get_object_chunked_unchecked, self)
}

/// Get a hold of the [`ChunkedArray`], [`Logical`] or
/// [`NullChunked`][super::implementations::null::NullChunked] as an `Any` trait reference.
/// Get a hold of the [`ChunkedArray`], [`Logical`] or `NullChunked` as an `Any` trait
/// reference.
fn as_any(&self) -> &dyn Any;

/// Get a hold of the [`ChunkedArray`], [`Logical`] or
/// [`NullChunked`][super::implementations::null::NullChunked] as an `Any` trait mutable
/// Get a hold of the [`ChunkedArray`], [`Logical`] or `NullChunked` as an `Any` trait mutable
/// reference.
fn as_any_mut(&mut self) -> &mut dyn Any;

Expand Down

0 comments on commit d681241

Please sign in to comment.