You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by fo...@apache.org on 2022/11/28 07:23:57 UTC

[iceberg] branch master updated: Docs: Fix redundant the (#6286)

This is an automated email from the ASF dual-hosted git repository.

fokko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git


The following commit(s) were added to refs/heads/master by this push:
     new a8e4eeaa70 Docs: Fix redundant the (#6286)
a8e4eeaa70 is described below

commit a8e4eeaa70da8a1f645d6da39f96d6a6d346599f
Author: slfan1989 <55...@users.noreply.github.com>
AuthorDate: Mon Nov 28 15:23:51 2022 +0800

    Docs: Fix redundant the (#6286)
    
    Co-authored-by: slfan1989 <louj1988@@>
---
 docs/reliability.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/reliability.md b/docs/reliability.md
index 0c94ef18d7..6a11516490 100644
--- a/docs/reliability.md
+++ b/docs/reliability.md
@@ -55,7 +55,7 @@ Iceberg supports multiple concurrent writes using optimistic concurrency.
 
 Each writer assumes that no other writers are operating and writes out new table metadata for an operation. Then, the writer attempts to commit by atomically swapping the new table metadata file for the existing metadata file.
 
-If the atomic swap fails because another writer has committed, the failed writer retries by writing a new metadata tree based on the the new current table state.
+If the atomic swap fails because another writer has committed, the failed writer retries by writing a new metadata tree based on the new current table state.
 
 ### Cost of retries