@@ -110,11 +110,11 @@ where
110
110
pub trait RunQueryDsl < Conn > : Sized {
111
111
/// Executes the given command, returning the number of rows affected.
112
112
///
113
- /// `execute` is usually used in conjunction with [`insert_into`](crate ::insert_into()),
114
- /// [`update`](crate ::update()) and [`delete`](crate ::delete()) where the number of
113
+ /// `execute` is usually used in conjunction with [`insert_into`](diesel ::insert_into()),
114
+ /// [`update`](diesel ::update()) and [`delete`](diesel ::delete()) where the number of
115
115
/// affected rows is often enough information.
116
116
///
117
- /// When asking the database to return data from a query, [`load`](crate::query_dsl ::RunQueryDsl::load()) should
117
+ /// When asking the database to return data from a query, [`load`](crate::run_query_dsl ::RunQueryDsl::load()) should
118
118
/// probably be used instead.
119
119
///
120
120
/// # Example
@@ -164,10 +164,10 @@ pub trait RunQueryDsl<Conn>: Sized {
164
164
/// For insert, update, and delete operations where only a count of affected is needed,
165
165
/// [`execute`] should be used instead.
166
166
///
167
- /// [`Queryable`]: crate ::deserialize::Queryable
168
- /// [`QueryableByName`]: crate ::deserialize::QueryableByName
169
- /// [`execute`]: crate::query_dsl ::RunQueryDsl::execute()
170
- /// [`sql_query`]: crate ::sql_query()
167
+ /// [`Queryable`]: diesel ::deserialize::Queryable
168
+ /// [`QueryableByName`]: diesel ::deserialize::QueryableByName
169
+ /// [`execute`]: crate::run_query_dsl ::RunQueryDsl::execute()
170
+ /// [`sql_query`]: diesel ::sql_query()
171
171
///
172
172
/// # Examples
173
173
///
@@ -281,10 +281,10 @@ pub trait RunQueryDsl<Conn>: Sized {
281
281
/// For insert, update, and delete operations where only a count of affected is needed,
282
282
/// [`execute`] should be used instead.
283
283
///
284
- /// [`Queryable`]: crate ::deserialize::Queryable
285
- /// [`QueryableByName`]: crate ::deserialize::QueryableByName
286
- /// [`execute`]: crate::query_dsl ::RunQueryDsl::execute()
287
- /// [`sql_query`]: crate ::sql_query()
284
+ /// [`Queryable`]: diesel ::deserialize::Queryable
285
+ /// [`QueryableByName`]: diesel ::deserialize::QueryableByName
286
+ /// [`execute`]: crate::run_query_dsl ::RunQueryDsl::execute()
287
+ /// [`sql_query`]: diesel ::sql_query()
288
288
///
289
289
/// # Examples
290
290
///
@@ -463,7 +463,7 @@ pub trait RunQueryDsl<Conn>: Sized {
463
463
/// This method is an alias for [`load`], but with a name that makes more
464
464
/// sense for insert, update, and delete statements.
465
465
///
466
- /// [`load`]: crate::query_dsl ::RunQueryDsl::load()
466
+ /// [`load`]: crate::run_query_dsl ::RunQueryDsl::load()
467
467
async fn get_results < U > ( self , conn : & mut Conn ) -> QueryResult < Vec < U > >
468
468
where
469
469
U : Send ,
0 commit comments