From ec04a734dc7654d473dcd06296c9cec6ac0a5621 Mon Sep 17 00:00:00 2001 From: danielsanchezq Date: Tue, 27 Sep 2022 11:22:00 +0200 Subject: [PATCH] Nitpick in docs --- waku/src/general/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/waku/src/general/mod.rs b/waku/src/general/mod.rs index 804cff9..3fbb5cd 100644 --- a/waku/src/general/mod.rs +++ b/waku/src/general/mod.rs @@ -107,8 +107,8 @@ pub struct PagingOptions { /// Number of messages to retrieve per page page_size: usize, /// 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 false, paging will be performed from the end 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 cursor: Option, /// `true` if paging forward, `false` if paging backward forward: bool,