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

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


The following commit(s) were added to refs/heads/main by this push:
     new fe004c5bfe Docs: Fix typo in tag reading example (#9496)
fe004c5bfe is described below

commit fe004c5bfe26a7bfbb3d7b400dc4376420168c58
Author: pvary <[email protected]>
AuthorDate: Wed Jan 17 14:50:02 2024 +0100

    Docs: Fix typo in tag reading example (#9496)
    
    Co-authored-by: Peter Vary <[email protected]>
---
 docs/java-api-quickstart.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/java-api-quickstart.md b/docs/java-api-quickstart.md
index 358ed2b41d..f8c6b3e609 100644
--- a/docs/java-api-quickstart.md
+++ b/docs/java-api-quickstart.md
@@ -264,7 +264,7 @@ Reading from a branch or tag can be done as usual via the 
Table Scan API, by pas
 TableScan branchRead = table.newScan().useRef("test-branch");
 
 // Read from the snapshot referenced by audit-tag
-Table tagRead = table.newScan().useRef("audit-tag");
+TableScan tagRead = table.newScan().useRef("audit-tag");
 ```
 
 ### Replacing and fast forwarding branches and tags

Reply via email to