From 37e54ee874e9027a329ba4f6c1e0e6359d63a33c Mon Sep 17 00:00:00 2001 From: FANNG Date: Tue, 20 Aug 2024 15:28:30 +0800 Subject: [PATCH] [MINOR] correct document mistakes (#12068) * mistake * mistake --- datafusion/catalog/src/catalog.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/datafusion/catalog/src/catalog.rs b/datafusion/catalog/src/catalog.rs index 026c3c008f59..9ee94e8f1fc3 100644 --- a/datafusion/catalog/src/catalog.rs +++ b/datafusion/catalog/src/catalog.rs @@ -34,7 +34,7 @@ use datafusion_common::Result; /// * [`CatalogProviderList`]: a collection of `CatalogProvider`s /// * [`CatalogProvider`]: a collection of `SchemaProvider`s (sometimes called a "database" in other systems) /// * [`SchemaProvider`]: a collection of `TableProvider`s (often called a "schema" in other systems) -/// * [`TableProvider]`: individual tables +/// * [`TableProvider`]: individual tables /// /// # Implementing Catalogs /// @@ -99,7 +99,7 @@ use datafusion_common::Result; /// [delta-rs]: https://github.com/delta-io/delta-rs /// [`UnityCatalogProvider`]: https://github.com/delta-io/delta-rs/blob/951436ecec476ce65b5ed3b58b50fb0846ca7b91/crates/deltalake-core/src/data_catalog/unity/datafusion.rs#L111-L123 /// -/// [`TableProvider]: crate::datasource::TableProvider +/// [`TableProvider`]: crate::TableProvider pub trait CatalogProvider: Sync + Send { /// Returns the catalog provider as [`Any`]