Skip to content

Commit

Permalink
Fix docs wordings (#11226)
Browse files Browse the repository at this point in the history
* Fix "part of Arrow" wording in docs

DataFusion is a top level project.

* Fix doc reference in into_optimized_plan
  • Loading branch information
findepi committed Jul 2, 2024
1 parent a4796fa commit 4f4cd81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion datafusion/core/src/dataframe/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1157,7 +1157,7 @@ impl DataFrame {
/// Return the optimized [`LogicalPlan`] represented by this DataFrame.
///
/// Note: This method should not be used outside testing -- see
/// [`Self::into_optimized_plan`] for more details.
/// [`Self::into_unoptimized_plan`] for more details.
pub fn into_optimized_plan(self) -> Result<LogicalPlan> {
// Optimize the plan first for better UX
self.session_state.optimize(&self.plan)
Expand Down
2 changes: 1 addition & 1 deletion docs/source/user-guide/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
DataFusion is a very fast, extensible query engine for building
high-quality data-centric systems in [Rust](http://rustlang.org),
using the [Apache Arrow](https://arrow.apache.org) in-memory format.
DataFusion is part of the [Apache Arrow](https://arrow.apache.org/)
DataFusion originated as part of the [Apache Arrow](https://arrow.apache.org/)
project.

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.
Expand Down

0 comments on commit 4f4cd81

Please sign in to comment.