Nitpick in docs

This commit is contained in:
danielsanchezq 2022-09-27 11:22:00 +02:00
parent 3132182a7a
commit ec04a734dc
1 changed files with 2 additions and 2 deletions

View File

@ -107,8 +107,8 @@ pub struct PagingOptions {
/// Number of messages to retrieve per page /// Number of messages to retrieve per page
page_size: usize, page_size: usize,
/// Message Index from which to perform pagination. /// Message Index from which to perform pagination.
/// If not included and forward is set to true, paging will be performed from the beginning of the list. /// If not included and forward is set to `true`, paging will be performed from the beginning of the list.
/// If not included and forward is set to false, paging will be performed from the end of the list /// If not included and forward is set to `false`, paging will be performed from the end of the list
cursor: Option<MessageIndex>, cursor: Option<MessageIndex>,
/// `true` if paging forward, `false` if paging backward /// `true` if paging forward, `false` if paging backward
forward: bool, forward: bool,