@@ -31,7 +31,7 @@ impl AsRef<Expression> for Expression {
31
31
}
32
32
33
33
// rustdoc-stripper-ignore-next
34
- /// A common trait implemented by the various [`gtk:: Expression`] types.
34
+ /// A common trait implemented by the various [`Expression`](crate::Expression) types.
35
35
///
36
36
/// # Safety
37
37
///
@@ -161,8 +161,9 @@ impl Expression {
161
161
}
162
162
163
163
// rustdoc-stripper-ignore-next
164
- /// Create a [`gtk::PropertyExpression`] that looks up for `property_name`
165
- /// with self as parameter. This is useful in long chains of [`gtk::Expression`]s.
164
+ /// Create a [`PropertyExpression`](crate::PropertyExpression) that looks up for
165
+ /// `property_name` with self as parameter. This is useful in long chains of
166
+ /// [`Expression`](crate::Expression)s.
166
167
pub fn chain_property < T : IsA < glib:: Object > > (
167
168
& self ,
168
169
property_name : & str ,
@@ -171,8 +172,8 @@ impl Expression {
171
172
}
172
173
173
174
// rustdoc-stripper-ignore-next
174
- /// Create a [`gtk:: ClosureExpression`] with self as a parameter. This is useful in long
175
- /// chains of [`gtk:: Expression`]s.
175
+ /// Create a [`ClosureExpression`](crate::ClosureExpression) with self as the second parameter.
176
+ /// This is useful in long chains of [`Expression`](crate::Expression) s.
176
177
pub fn chain_closure < F , R > ( & self , f : F ) -> crate :: ClosureExpression
177
178
where
178
179
F : Fn ( & [ glib:: Value ] ) -> R + ' static ,
@@ -250,12 +251,13 @@ impl glib::value::ToValueOptional for Expression {
250
251
}
251
252
252
253
// rustdoc-stripper-ignore-next
253
- /// Trait containing convenience methods in creating [`gtk::PropertyExpression`] that
254
+ /// Trait containing convenience methods in creating
255
+ /// [`PropertyExpression`](crate::PropertyExpression) that
254
256
/// looks up a property of a [`glib::Object`].
255
257
///
256
258
/// # Example
257
259
///
258
- /// `label_expression` is a [`gtk:: Expression`] that looks up at Button's `label`
260
+ /// `label_expression` is an [`Expression`](crate::Expression) that looks up at Button's `label`
259
261
/// property.
260
262
///
261
263
/// ```no_run
0 commit comments