From 2fbe926df2762f1182c10209a194dedb5c81806a Mon Sep 17 00:00:00 2001 From: Franck Royer Date: Tue, 5 Oct 2021 13:44:37 +1100 Subject: [PATCH] Fix typos --- guides/reactjs-store.md | 4 ++-- guides/store-retrieve-messages.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/guides/reactjs-store.md b/guides/reactjs-store.md index 4c9c3cbfb9..7bd2d462e1 100644 --- a/guides/reactjs-store.md +++ b/guides/reactjs-store.md @@ -275,9 +275,9 @@ Depending on your use case, you may not need to retrieve 30 days worth of messag The timestamp is set by the sender. By default, js-waku [sets the timestamp of outgoing message to the current time](https://github.com/status-im/js-waku/blob/a056227538f9409aa9134c7ef0df25f602dbea58/src/lib/waku_message/index.ts#L76). -You can filter messages that include a timestamp within given bound with the `timeFilter` option. +You can filter messages that include a timestamp within given bounds with the `timeFilter` option. -Let's only retrieve messages up to a week old: +Retrieve messages up to a week old: ```js const startTime = new Date(); diff --git a/guides/store-retrieve-messages.md b/guides/store-retrieve-messages.md index 16437574a6..e37c4b856e 100644 --- a/guides/store-retrieve-messages.md +++ b/guides/store-retrieve-messages.md @@ -176,12 +176,12 @@ Depending on your use case, you may not need to retrieve 30 days worth of messag The timestamp is set by the sender. By default, js-waku [sets the timestamp of outgoing message to the current time](https://github.com/status-im/js-waku/blob/a056227538f9409aa9134c7ef0df25f602dbea58/src/lib/waku_message/index.ts#L76). -You can filter messages that include a timestamp within given bound with the `timeFilter` option. +You can filter messages that include a timestamp within given bounds with the `timeFilter` option. -Let's only retrieve messages up to a week old: +Retrieve messages up to a week old: ```js -// `ContentTopic` and `callback` definitions +// [..] `ContentTopic` and `callback` definitions const startTime = new Date(); // 7 days/week, 24 hours/day, 60min/hour, 60secs/min, 100ms/sec