From ffe677c1bfcff822bd5287cc525700f7ddacbca1 Mon Sep 17 00:00:00 2001 From: jayzhan211 Date: Mon, 11 Mar 2024 21:53:46 +0800 Subject: [PATCH] fix docs Signed-off-by: jayzhan211 --- datafusion/execution/src/registry.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/datafusion/execution/src/registry.rs b/datafusion/execution/src/registry.rs index 5735e265f2a2..a05d69fc9118 100644 --- a/datafusion/execution/src/registry.rs +++ b/datafusion/execution/src/registry.rs @@ -68,7 +68,7 @@ pub trait FunctionRegistry { not_impl_err!("Registering WindowUDF") } - /// Registers a new [`AnalyzerRule`] at the given index. + /// Registers a new `AnalyzerRule` at the given index. /// Returns an error if the index is out of bounds. fn register_analyzer_rule( &mut self, @@ -105,7 +105,7 @@ pub trait FunctionRegistry { not_impl_err!("Deregistering WindowUDF") } - /// Deregsiters an [`AnalyzerRule`] at the given index. + /// Deregsiters an `AnalyzerRule` at the given index. /// Returns an error if the index is out of bounds. fn deregister_analyzer_rule(&mut self, _index: usize) -> Result<()> { not_impl_err!("DeRegistering AnalyzerRule")