This is an automated email from the ASF dual-hosted git repository.
kevinjqliu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-python.git
The following commit(s) were added to refs/heads/main by this push:
new 5b8f4784 Fix a link in the docs (#2977)
5b8f4784 is described below
commit 5b8f4784c51f9d7c5ec4847e59dd142fd6ccc75a
Author: Alex Stephen <[email protected]>
AuthorDate: Wed Jan 28 18:10:23 2026 -0800
Fix a link in the docs (#2977)
<!--
Thanks for opening a pull request!
-->
<!-- In the case this PR will resolve an issue, please replace
${GITHUB_ISSUE_ID} below with the actual Github issue id. -->
<!-- Closes #${GITHUB_ISSUE_ID} -->
# Rationale for this change
MKDocs has been complaining about an invalid link, but they were buried
in the logs. I'll work to figure out how to make these more visible in
the future.
## Are these changes tested?
MKDocs shouldn't show the issue in the logs anymore.
## Are there any user-facing changes?
<!-- In the case of user-facing changes, please add the changelog label.
-->
---
mkdocs/docs/configuration.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mkdocs/docs/configuration.md b/mkdocs/docs/configuration.md
index efe6ddee..eb19e673 100644
--- a/mkdocs/docs/configuration.md
+++ b/mkdocs/docs/configuration.md
@@ -81,7 +81,7 @@ Iceberg tables support table properties to configure table
behavior.
<!-- prettier-ignore-start -->
!!! note "Fast append"
- Unlike Java implementation, PyIceberg default to the [fast
append](api.md#write-support) and thus `commit.manifest-merge.enabled` is set
to `False` by default.
+ Unlike Java implementation, PyIceberg default to the [fast
append](api.md#write-to-a-table) and thus `commit.manifest-merge.enabled` is
set to `False` by default.
<!-- prettier-ignore-end -->