Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Remove some repetition in comments/docstrings #14912

Merged
merged 1 commit into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/polars-core/src/chunked_array/logical/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pub use time::*;

use crate::prelude::*;

/// Maps a logical type to a a chunked array implementation of the physical type.
/// Maps a logical type to a chunked array implementation of the physical type.
/// This saves a lot of compiler bloat and allows us to reuse functionality.
pub struct Logical<Logical: PolarsDataType, Physical: PolarsDataType>(
pub ChunkedArray<Physical>,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ where
},
PhysicalType::FixedLenByteArray(n) => {
polars_bail!(ComputeError:
"Can't decode Decimal256 type from from `FixedLenByteArray` of len {n}"
"Can't decode Decimal256 type from `FixedLenByteArray` of len {n}"
)
},
_ => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub struct GenericOuterJoinProbe<K: ExtraPayload> {
/// all chunks are stacked into a single dataframe
/// the dataframe is not rechunked.
df_a: Arc<DataFrame>,
// Dummy needed for the the flush phase.
// Dummy needed for the flush phase.
df_b_dummy: Option<DataFrame>,
/// The join columns are all tightly packed
/// the values of a join column(s) can be found
Expand Down
Loading