Skip to content

Commit

Permalink
remove repetitive words (#14912)
Browse files Browse the repository at this point in the history
Signed-off-by: battmdpkq <cmaker@163.com>
  • Loading branch information
battmdpkq authored Mar 8, 2024
1 parent e1a4179 commit 48b469d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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
2 changes: 1 addition & 1 deletion crates/polars-parquet/src/arrow/read/deserialize/nested.rs
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

0 comments on commit 48b469d

Please sign in to comment.