Skip to content

Commit

Permalink
fix doc ref
Browse files Browse the repository at this point in the history
  • Loading branch information
coastalwhite committed Jan 10, 2025
1 parent 194972a commit 1d59945
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 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,13 @@ pub trait SeriesTrait:
invalid_operation_panic!(get_object_chunked_unchecked, self)
}

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

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

#[cfg(feature = "checked_arithmetic")]
Expand Down

0 comments on commit 1d59945

Please sign in to comment.