events: Add a link to MSC3554

This commit is contained in:
Kévin Commaille 2022-03-28 18:30:52 +02:00 committed by Kévin Commaille
parent 85bd4a3e1f
commit b701c9af0e

View File

@ -227,9 +227,11 @@ pub struct Text {
/// The text content. /// The text content.
pub body: String, pub body: String,
/// The language of the text. /// The language of the text ([MSC3554]).
/// ///
/// This must be a valid language code according to [BCP 47](https://www.rfc-editor.org/rfc/bcp/bcp47.txt). /// This must be a valid language code according to [BCP 47](https://www.rfc-editor.org/rfc/bcp/bcp47.txt).
///
/// [MSC3554]: https://github.com/matrix-org/matrix-spec-proposals/pull/3554
#[cfg(feature = "unstable-msc3554")] #[cfg(feature = "unstable-msc3554")]
#[serde(skip_serializing_if = "Option::is_none")] #[serde(skip_serializing_if = "Option::is_none")]
pub lang: Option<String>, pub lang: Option<String>,