From 9379080aea9f678467bf6e0c29412667a991d531 Mon Sep 17 00:00:00 2001 From: Michael Baker Date: Wed, 13 Dec 2023 04:21:21 -0500 Subject: [PATCH] docs: minor grammar cleanup (#538) --- .../tutorial/03-sveltekit/08-stores/03-updated-store/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/tutorial/03-sveltekit/08-stores/03-updated-store/README.md b/content/tutorial/03-sveltekit/08-stores/03-updated-store/README.md index 23f034492..e910c4dc7 100644 --- a/content/tutorial/03-sveltekit/08-stores/03-updated-store/README.md +++ b/content/tutorial/03-sveltekit/08-stores/03-updated-store/README.md @@ -4,7 +4,7 @@ title: updated The `updated` store contains `true` or `false` depending on whether a new version of the app has been deployed since the page was first opened. For this to work, your `svelte.config.js` must specify `kit.version.pollInterval`. -Version changes only happens in production, not during development. For that reason, `$updated` will always be `false` in this tutorial. +Version changes only happen in production, not during development. For that reason, `$updated` will always be `false` in this tutorial. You can manually check for new versions, regardless of `pollInterval`, by calling `updated.check()`.