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

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


The following commit(s) were added to refs/heads/main by this push:
     new 1b32a33  docs: fix main iceberg example (#554)
1b32a33 is described below

commit 1b32a335f877aea94367277f6163a661a1843024
Author: Jack <[email protected]>
AuthorDate: Fri Aug 16 10:19:27 2024 +0100

    docs: fix main iceberg example (#554)
---
 crates/iceberg/README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/crates/iceberg/README.md b/crates/iceberg/README.md
index 4533e42..b292303 100644
--- a/crates/iceberg/README.md
+++ b/crates/iceberg/README.md
@@ -53,7 +53,7 @@ async fn main() -> Result<()> {
         .await?;
 
     // Consume this stream like arrow record batch stream.
-    let _data: Vec<_> = stream. try_collect().await?;
+    let _data: Vec<_> = stream.try_collect().await?;
     Ok(())
 }
-```
\ No newline at end of file
+```

Reply via email to