Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ The `fetch` query finalizer returns a stream-like type that iterates through the
```rust
let mut cursor = sqlx::query("SELECT * FROM users WHERE email = ?")
.bind(email)
.fetch(&mut conn).await?;
.fetch(&mut conn);

while let Some(row) = cursor.next().await? {
// map the row into a user-defined domain type
Expand Down