diff --git a/site/content/tutorial/08-stores/05-custom-stores/text.md b/site/content/tutorial/08-stores/05-custom-stores/text.md index febd0ad7f7..4ec1cade21 100644 --- a/site/content/tutorial/08-stores/05-custom-stores/text.md +++ b/site/content/tutorial/08-stores/05-custom-stores/text.md @@ -6,6 +6,8 @@ As long as an object correctly implements the `subscribe` method, it's a store. For example, the `count` store from our earlier example could include `increment`, `decrement` and `reset` methods and avoid exposing `set` and `update`: +[more explanations here] + ```js function createCount() { const { subscribe, set, update } = writable(0);