Skip to content

Commit ff2533c

Browse files
committed
fix typos
1 parent 5035d76 commit ff2533c

6 files changed

Lines changed: 5 additions & 5 deletions

File tree

datafusion/common/src/scalar/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2378,7 +2378,7 @@ impl ScalarValue {
23782378
Arc::new(array)
23792379
}
23802380
// explicitly enumerate unsupported types so newly added
2381-
// types must be aknowledged, Time32 and Time64 types are
2381+
// types must be acknowledged, Time32 and Time64 types are
23822382
// not supported if the TimeUnit is not valid (Time32 can
23832383
// only be used with Second and Millisecond, Time64 only
23842384
// with Microsecond and Nanosecond)

datafusion/core/src/datasource/listing/table.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1131,7 +1131,7 @@ impl ListingTable {
11311131
}
11321132
}
11331133

1134-
// Expressions can be used for parttion pruning if they can be evaluated using
1134+
// Expressions can be used for partition pruning if they can be evaluated using
11351135
// only the partition columns and there are partition columns.
11361136
fn can_be_evaluated_for_partition_pruning(
11371137
partition_column_names: &[&str],

datafusion/core/tests/physical_optimizer/filter_pushdown/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1102,7 +1102,7 @@ async fn test_hashjoin_dynamic_filter_pushdown_partitioned() {
11021102
Arc::new(CoalesceBatchesExec::new(hash_join, 8192)) as Arc<dyn ExecutionPlan>;
11031103
// Top-level CoalescePartitionsExec
11041104
let cp = Arc::new(CoalescePartitionsExec::new(cb)) as Arc<dyn ExecutionPlan>;
1105-
// Add a sort for determistic output
1105+
// Add a sort for deterministic output
11061106
let plan = Arc::new(SortExec::new(
11071107
LexOrdering::new(vec![PhysicalSortExpr::new(
11081108
col("a", &probe_side_schema).unwrap(),

datafusion/physical-expr/src/expressions/case.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1070,7 +1070,6 @@ mod tests {
10701070
.into_iter()
10711071
.collect();
10721072

1073-
//let valid_array = vec![true, false, false, true, false, tru
10741073
let null_buffer = Buffer::from([0b00101001u8]);
10751074
let load4 = load4
10761075
.into_data()

docs/source/user-guide/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Here are some example systems built using DataFusion:
8686
By using DataFusion, projects are freed to focus on their specific
8787
features, and avoid reimplementing general (but still necessary)
8888
features such as an expression representation, standard optimizations,
89-
parellelized streaming execution plans, file format support, etc.
89+
parallelized streaming execution plans, file format support, etc.
9090

9191
## Known Users
9292

typos.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ abov = "abov"
1616
Ois = "Ois"
1717
alo = "alo"
1818
Byt = "Byt"
19+
nteger = "nteger"
1920

2021
# abbreviations, common words, etc.
2122
typ = "typ"

0 commit comments

Comments
 (0)