Skip to content

Commit

Permalink
fix: Fix some broken links in the documentation (#484)
Browse files Browse the repository at this point in the history
  • Loading branch information
DataTriny authored Nov 23, 2024
1 parent dcb17bc commit 0a51225
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion common/src/geometry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ impl Affine {
/// [Wikipedia](https://en.wikipedia.org/wiki/Affine_transformation)
/// formulation of affine transformation as augmented matrix. The
/// idea is that `(A * B) * v == A * (B * v)`, where `*` is the
/// [`Mul`](std::ops::Mul) trait.
/// [`Mul`](core::ops::Mul) trait.
#[inline]
pub const fn new(c: [f64; 6]) -> Affine {
Affine(c)
Expand Down
8 changes: 4 additions & 4 deletions common/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1567,9 +1567,9 @@ string_property_methods! {
/// Only present when different from parent.
(Language, language, set_language, clear_language),
/// If a text input has placeholder text, it should be exposed
/// through this property rather than [`name`].
/// through this property rather than [`label`].
///
/// [`name`]: Node::name
/// [`label`]: Node::label
(Placeholder, placeholder, set_placeholder, clear_placeholder),
/// An optional string that may override an assistive technology's
/// description of the node's role. Only provide this for custom control types.
Expand All @@ -1581,9 +1581,9 @@ string_property_methods! {
/// and assistive technologies do not support this feature.
(StateDescription, state_description, set_state_description, clear_state_description),
/// If a node's only accessible name comes from a tooltip, it should be
/// exposed through this property rather than [`name`].
/// exposed through this property rather than [`label`].
///
/// [`name`]: Node::name
/// [`label`]: Node::label
(Tooltip, tooltip, set_tooltip, clear_tooltip),
(Url, url, set_url, clear_url),
(RowIndexText, row_index_text, set_row_index_text, clear_row_index_text),
Expand Down

0 comments on commit 0a51225

Please sign in to comment.