mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-10 06:24:16 +00:00
fix a typo
This commit is contained in:
parent
2a19ab746b
commit
aea7106112
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ let is_active: bool = row.get("is_active");
|
|||
```
|
||||
|
||||
The `sqlx::query!` macro prepares the SQL query and interprets the result in order to constrain input types and
|
||||
infer output types. The result of `query!` is an anoymous struct (or named tuple).
|
||||
infer output types. The result of `query!` is an anonymous struct (or named tuple).
|
||||
|
||||
```rust
|
||||
let countries = sqlx::query!(
|
||||
|
|
Loading…
Reference in a new issue