You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by al...@apache.org on 2022/02/03 19:15:03 UTC

[arrow-datafusion] branch master updated: Fix typos in crate documentation (#1739)

This is an automated email from the ASF dual-hosted git repository.

alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


The following commit(s) were added to refs/heads/master by this push:
     new 5124759  Fix typos in crate documentation (#1739)
5124759 is described below

commit 512475996eb90f7c07b8bdc55a8953b6fd8f0881
Author: r.4ntix <r....@gmail.com>
AuthorDate: Fri Feb 4 03:14:57 2022 +0800

    Fix typos in crate documentation (#1739)
---
 datafusion/src/lib.rs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/datafusion/src/lib.rs b/datafusion/src/lib.rs
index 2eb7d9a..9442f7e 100644
--- a/datafusion/src/lib.rs
+++ b/datafusion/src/lib.rs
@@ -162,8 +162,8 @@
 //! * Sort: [`SortExec`](physical_plan::sort::SortExec)
 //! * Coalesce partitions: [`CoalescePartitionsExec`](physical_plan::coalesce_partitions::CoalescePartitionsExec)
 //! * Limit: [`LocalLimitExec`](physical_plan::limit::LocalLimitExec) and [`GlobalLimitExec`](physical_plan::limit::GlobalLimitExec)
-//! * Scan a CSV: [`CsvExec`](physical_plan::csv::CsvExec)
-//! * Scan a Parquet: [`ParquetExec`](physical_plan::parquet::ParquetExec)
+//! * Scan a CSV: [`CsvExec`](physical_plan::file_format::CsvExec)
+//! * Scan a Parquet: [`ParquetExec`](physical_plan::file_format::ParquetExec)
 //! * Scan from memory: [`MemoryExec`](physical_plan::memory::MemoryExec)
 //! * Explain the plan: [`ExplainExec`](physical_plan::explain::ExplainExec)
 //!