This is an automated email from the ASF dual-hosted git repository. github-merge-queue[bot] pushed a commit to branch gh-readonly-queue/main/pr-23457-844c62e55fec4e299d7dc7c77bc05c9bdcadd77c in repository https://gitbox.apache.org/repos/asf/datafusion.git
commit 4f3980210c909aa1e91fa5b92f6899f78bec32be Author: RIchard Baah <[email protected]> AuthorDate: Fri Jul 10 17:12:21 2026 -0400 fix: fix typo on doc (#23457) ## Which issue does this PR close? <!-- We generally require a GitHub issue to be filed for all bug fixes and enhancements and this helps us generate change logs for our releases. You can link an issue to this PR using the GitHub syntax. For example `Closes #123` indicates that this PR will close issue #123. --> - n/a ## Rationale for this change was reading https://docs.rs/datafusion/latest/datafusion/prelude/struct.SessionConfig.html#method.with_extension and noticed a typo <!-- Why are you proposing this change? If this is already explained clearly in the issue then this section is not needed. Explaining clearly why changes are proposed helps reviewers understand your changes and offer better suggestions for fixes. --> ## What changes are included in this PR? n/a <!-- There is no need to duplicate the description in the issue here but it is sometimes worth providing a summary of the individual changes in this PR. --> ## Are these changes tested? n/a <!-- We typically require tests for all PRs in order to: 1. Prevent the code from being accidentally broken by subsequent changes 2. Serve as another way to document the expected behavior of the code If tests are not included in your PR, please explain why (for example, are they covered by existing tests)? --> ## Are there any user-facing changes? yes <!-- If there are user-facing changes then we may require documentation to be updated before approving the PR. --> <!-- If there are any breaking changes to public APIs, please add the `api change` label. --> --- datafusion/execution/src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datafusion/execution/src/config.rs b/datafusion/execution/src/config.rs index 0a2a98eab6..efaedebdad 100644 --- a/datafusion/execution/src/config.rs +++ b/datafusion/execution/src/config.rs @@ -514,7 +514,7 @@ impl SessionConfig { /// Extensions are opaque and the types are unknown to DataFusion itself, which makes them extremely flexible. [^1] /// /// Extensions are stored within an [`Arc`] so they do NOT require [`Clone`]. The are immutable. If you need to - /// modify their state over their lifetime -- e.g. for caches -- you need to establish some for of interior mutability. + /// modify their state over their lifetime -- e.g. for caches -- you need to establish some form of interior mutability. /// /// Extensions are indexed by their type `T`. If multiple values of the same type are provided, only the last one /// will be kept. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
