Skip to content

Commit

Permalink
docs(query_as): fix link (#1761)
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrachev authored Mar 23, 2022
1 parent 3b1801b commit 78dc0ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqlx-core/src/query_as.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use crate::query::{query, query_statement, query_statement_with, query_with, Que
use crate::types::Type;

/// Raw SQL query with bind parameters, mapped to a concrete type using [`FromRow`].
/// Returned from [`query_as`].
/// Returned from [`query_as`][crate::query_as::query_as].
#[must_use = "query must be executed to affect database"]
pub struct QueryAs<'q, DB: Database, O, A> {
pub(crate) inner: Query<'q, DB, A>,
Expand Down

0 comments on commit 78dc0ad

Please sign in to comment.