From 697894ffd938065d6855d778edf3537f8b0a92ce Mon Sep 17 00:00:00 2001 From: Alex Kesling Date: Thu, 19 Dec 2024 18:28:19 -0500 Subject: [PATCH] typo: remove extraneous "`" in doc comment, fix header (#13848) * typo: extraneous "`" in doc comment * Update datafusion/execution/src/runtime_env.rs * Update datafusion/execution/src/runtime_env.rs --------- Co-authored-by: Oleks V --- datafusion/execution/src/runtime_env.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/datafusion/execution/src/runtime_env.rs b/datafusion/execution/src/runtime_env.rs index 5420080efd3e..2b08b7ff9e88 100644 --- a/datafusion/execution/src/runtime_env.rs +++ b/datafusion/execution/src/runtime_env.rs @@ -118,9 +118,8 @@ impl RuntimeEnv { /// runtime_env.register_object_store(&url, Arc::new(object_store)); /// ``` /// - /// # Example: Register local file system object store + /// # Example: Register remote URL object store like [Github](https://github.com) /// - /// To register reading from urls such as ` /// /// ``` /// # use std::sync::Arc;