Skip to content

Commit

Permalink
docs: fix main iceberg example (#554)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdockerty authored Aug 16, 2024
1 parent a796325 commit 1b32a33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/iceberg/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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(())
}
```
```

0 comments on commit 1b32a33

Please sign in to comment.