Skip to content

Commit 0a51225

Browse files
authored
fix: Fix some broken links in the documentation (#484)
1 parent dcb17bc commit 0a51225

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

common/src/geometry.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ impl Affine {
4848
/// [Wikipedia](https://en.wikipedia.org/wiki/Affine_transformation)
4949
/// formulation of affine transformation as augmented matrix. The
5050
/// idea is that `(A * B) * v == A * (B * v)`, where `*` is the
51-
/// [`Mul`](std::ops::Mul) trait.
51+
/// [`Mul`](core::ops::Mul) trait.
5252
#[inline]
5353
pub const fn new(c: [f64; 6]) -> Affine {
5454
Affine(c)

common/src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1567,9 +1567,9 @@ string_property_methods! {
15671567
/// Only present when different from parent.
15681568
(Language, language, set_language, clear_language),
15691569
/// If a text input has placeholder text, it should be exposed
1570-
/// through this property rather than [`name`].
1570+
/// through this property rather than [`label`].
15711571
///
1572-
/// [`name`]: Node::name
1572+
/// [`label`]: Node::label
15731573
(Placeholder, placeholder, set_placeholder, clear_placeholder),
15741574
/// An optional string that may override an assistive technology's
15751575
/// description of the node's role. Only provide this for custom control types.
@@ -1581,9 +1581,9 @@ string_property_methods! {
15811581
/// and assistive technologies do not support this feature.
15821582
(StateDescription, state_description, set_state_description, clear_state_description),
15831583
/// If a node's only accessible name comes from a tooltip, it should be
1584-
/// exposed through this property rather than [`name`].
1584+
/// exposed through this property rather than [`label`].
15851585
///
1586-
/// [`name`]: Node::name
1586+
/// [`label`]: Node::label
15871587
(Tooltip, tooltip, set_tooltip, clear_tooltip),
15881588
(Url, url, set_url, clear_url),
15891589
(RowIndexText, row_index_text, set_row_index_text, clear_row_index_text),

0 commit comments

Comments
 (0)