From 615ef737e4ea34e07ac84971e4e663f1b2c6629f Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Fri, 5 Jun 2026 14:16:56 +0200 Subject: [PATCH] doc(common): Fix a typo. --- crates/matrix-sdk-common/src/deserialized_responses.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/matrix-sdk-common/src/deserialized_responses.rs b/crates/matrix-sdk-common/src/deserialized_responses.rs index 99c838490..5aafdfad4 100644 --- a/crates/matrix-sdk-common/src/deserialized_responses.rs +++ b/crates/matrix-sdk-common/src/deserialized_responses.rs @@ -493,7 +493,7 @@ impl ThreadSummaryStatus { pub struct TimelineEvent { /// The event ID (cached from `Self::kind`). /// - /// This field contains a copy of `TimeilneEventKind::parse_event_id`. Why? + /// This field contains a copy of `TimelineEventKind::parse_event_id`. Why? /// Because reading the event ID is done **a lot** in the SDK. /// `TimelineEventKind::parse_event_id` implies parsing/deserializing the /// JSON payload looking for the event ID. It has a non-negligible cost.