Skip to content

Commit 4f4cd81

Browse files
authored
Fix docs wordings (#11226)
* Fix "part of Arrow" wording in docs DataFusion is a top level project. * Fix doc reference in into_optimized_plan
1 parent a4796fa commit 4f4cd81

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

datafusion/core/src/dataframe/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1157,7 +1157,7 @@ impl DataFrame {
11571157
/// Return the optimized [`LogicalPlan`] represented by this DataFrame.
11581158
///
11591159
/// Note: This method should not be used outside testing -- see
1160-
/// [`Self::into_optimized_plan`] for more details.
1160+
/// [`Self::into_unoptimized_plan`] for more details.
11611161
pub fn into_optimized_plan(self) -> Result<LogicalPlan> {
11621162
// Optimize the plan first for better UX
11631163
self.session_state.optimize(&self.plan)

docs/source/user-guide/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
DataFusion is a very fast, extensible query engine for building
2323
high-quality data-centric systems in [Rust](http://rustlang.org),
2424
using the [Apache Arrow](https://arrow.apache.org) in-memory format.
25-
DataFusion is part of the [Apache Arrow](https://arrow.apache.org/)
25+
DataFusion originated as part of the [Apache Arrow](https://arrow.apache.org/)
2626
project.
2727

2828
DataFusion offers SQL and Dataframe APIs, excellent [performance](https://benchmark.clickhouse.com/), built-in support for CSV, Parquet, JSON, and Avro, [python bindings], extensive customization, a great community, and more.

0 commit comments

Comments
 (0)