From 48b469d129aa98687ad8a41737e70f1490a4f1d7 Mon Sep 17 00:00:00 2001 From: battmdpkq <134909256+battmdpkq@users.noreply.github.com> Date: Fri, 8 Mar 2024 16:18:35 +0800 Subject: [PATCH] remove repetitive words (#14912) Signed-off-by: battmdpkq --- crates/polars-core/src/chunked_array/logical/mod.rs | 2 +- crates/polars-parquet/src/arrow/read/deserialize/nested.rs | 2 +- .../src/executors/sinks/joins/generic_probe_outer.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/polars-core/src/chunked_array/logical/mod.rs b/crates/polars-core/src/chunked_array/logical/mod.rs index 4e3cdcb3a602..81a34b4d44dd 100644 --- a/crates/polars-core/src/chunked_array/logical/mod.rs +++ b/crates/polars-core/src/chunked_array/logical/mod.rs @@ -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( pub ChunkedArray, diff --git a/crates/polars-parquet/src/arrow/read/deserialize/nested.rs b/crates/polars-parquet/src/arrow/read/deserialize/nested.rs index d478beeb1c01..25507816b8fe 100644 --- a/crates/polars-parquet/src/arrow/read/deserialize/nested.rs +++ b/crates/polars-parquet/src/arrow/read/deserialize/nested.rs @@ -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}" ) }, _ => { diff --git a/crates/polars-pipe/src/executors/sinks/joins/generic_probe_outer.rs b/crates/polars-pipe/src/executors/sinks/joins/generic_probe_outer.rs index 238ccf62665a..77db52b9f42c 100644 --- a/crates/polars-pipe/src/executors/sinks/joins/generic_probe_outer.rs +++ b/crates/polars-pipe/src/executors/sinks/joins/generic_probe_outer.rs @@ -22,7 +22,7 @@ pub struct GenericOuterJoinProbe { /// all chunks are stacked into a single dataframe /// the dataframe is not rechunked. df_a: Arc, - // Dummy needed for the the flush phase. + // Dummy needed for the flush phase. df_b_dummy: Option, /// The join columns are all tightly packed /// the values of a join column(s) can be found