From 4a5a14a2bcb9e1a158e049c680c9f6daa6356599 Mon Sep 17 00:00:00 2001 From: joostdecock Date: Sun, 14 Jan 2024 14:52:37 +0100 Subject: [PATCH] fix(markdown): Properly end the tutorial section on flag methods This closes ##5772 Although the real issue is that the final parts of the tutorial are still in need of being updated for v3. --- markdown/dev/tutorials/pattern-design/part3/flag/en.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/markdown/dev/tutorials/pattern-design/part3/flag/en.md b/markdown/dev/tutorials/pattern-design/part3/flag/en.md index f8eea72473d..f6e6297f0f1 100644 --- a/markdown/dev/tutorials/pattern-design/part3/flag/en.md +++ b/markdown/dev/tutorials/pattern-design/part3/flag/en.md @@ -21,6 +21,11 @@ Finally, keep in mind that we are now straddling the world of the core library and frontend integration. These messages won't do anything unless you have a frontend the shows them. +In other words **core does not care**. We are merely storing data in the store +and relying on the frontend to show this data to the user. We merely offer +standard methods to do so, but you can choose to ignore this info, or show it +in a different way in your own frontend implementation. + ```design/src/bib.mjs function draftBib({ @@ -337,4 +342,3 @@ function draftBib({ ``` -Now the first thing you should know is: **core does not care**. We are