docs: Fix invalid link to the spec

This commit is contained in:
Kévin Commaille 2023-02-11 11:24:25 +01:00 committed by Kévin Commaille
parent 2e51eeb5bc
commit efc60d6a64

View File

@ -11,12 +11,11 @@ use super::ServerName;
/// ///
/// # Room versions /// # Room versions
/// ///
/// Matrix specifies multiple [room versions](https://spec.matrix.org/v1.4/#room-versions) and the /// Matrix specifies multiple [room versions] and the format of event identifiers differ between
/// format of event identifiers differ between them. The original format used by room versions 1 and /// them. The original format used by room versions 1 and 2 uses a short pseudorandom "localpart"
/// 2 uses a short pseudorandom "localpart" followed by the hostname and port of the originating /// followed by the hostname and port of the originating homeserver. Later room versions change
/// homeserver. Later room versions change event identifiers to be a hash of the event encoded with /// event identifiers to be a hash of the event encoded with Base64. Some of the methods provided by
/// Base64. Some of the methods provided by `EventId` are only relevant to the original event /// `EventId` are only relevant to the original event format.
/// format.
/// ///
/// ``` /// ```
/// # use ruma_common::EventId; /// # use ruma_common::EventId;
@ -35,6 +34,7 @@ use super::ServerName;
/// ``` /// ```
/// ///
/// [event ID]: https://spec.matrix.org/v1.4/appendices/#room-ids-and-event-ids /// [event ID]: https://spec.matrix.org/v1.4/appendices/#room-ids-and-event-ids
/// [room versions]: https://spec.matrix.org/v1.4/rooms/#complete-list-of-room-versions
#[repr(transparent)] #[repr(transparent)]
#[derive(PartialEq, Eq, PartialOrd, Ord, Hash, IdZst)] #[derive(PartialEq, Eq, PartialOrd, Ord, Hash, IdZst)]
#[ruma_id(validate = ruma_identifiers_validation::event_id::validate)] #[ruma_id(validate = ruma_identifiers_validation::event_id::validate)]