Skip to content

Commit

Permalink
fix: Missing semicolon in docs test
Browse files Browse the repository at this point in the history
  • Loading branch information
peasee committed Aug 28, 2024
1 parent 6e0ec5c commit e161ce8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/duckdb/src/statement.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ impl Statement<'_> {
/// ```rust,no_run
/// # use duckdb::{Result, Connection};
/// # use arrow::record_batch::RecordBatch;
/// # use arrow::datatypes::SchemaRef
/// # use arrow::datatypes::SchemaRef;
/// fn get_arrow_data(conn: &Connection, schema: SchemaRef) -> Result<Vec<RecordBatch>> {
/// Ok(conn.prepare("SELECT * FROM test")?.stream_arrow([], schema)?.collect())
/// }
Expand Down

0 comments on commit e161ce8

Please sign in to comment.