diff --git a/crates/ruma-client-api/src/message/get_message_events.rs b/crates/ruma-client-api/src/message/get_message_events.rs index 25334134..fae841f1 100644 --- a/crates/ruma-client-api/src/message/get_message_events.rs +++ b/crates/ruma-client-api/src/message/get_message_events.rs @@ -112,6 +112,9 @@ pub mod v3 { /// Creates a new `Request` with the given room ID and `dir` set to `Backward`. /// + /// If the returned request is sent without `from` being set, pagination will start at the + /// end of (the accessible part of) the room timeline. + /// /// # Example /// /// ```rust @@ -126,6 +129,9 @@ pub mod v3 { /// Creates a new `Request` with the given room ID and `dir` set to `Forward`. /// + /// If the returned request is sent without `from` being set, pagination will start at the + /// beginning of (the accessible part of) the room timeline. + /// /// # Example /// /// ```rust