From fea50bd2ed1eceb16f0249e1a466e93cb0b6fada Mon Sep 17 00:00:00 2001 From: Sanjiv Sahayam Date: Fri, 28 May 2021 22:35:08 +1000 Subject: [PATCH] Fix another broken link What are the chances of a second broken link! I should have clicked through all of them before submitting the previous PR. --- docs/public/content/examples/03-storage.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/public/content/examples/03-storage.md b/docs/public/content/examples/03-storage.md index 42be87d..7ddb6f9 100644 --- a/docs/public/content/examples/03-storage.md +++ b/docs/public/content/examples/03-storage.md @@ -1,6 +1,6 @@ # Storage -__Source code__: [GitHub](https://github.com/ryannhg/elm-spa/tree/main/examples/03-storage) +__Source code__: [GitHub](https://github.com/ryannhg/elm-spa/tree/main/examples/03-local-storage) Let's start by creating a new project with the __elm-spa__ CLI: @@ -256,7 +256,7 @@ That's it for this file- now we're ready to use our `Storage` module in our app! ### Wiring up the shared state -Let's eject `Shared.elm` by moving it from `.elm-spa/defaults` into our `src` folder. This will allow us to make local changes to it, as explained in the [shared state section](/guides/05-shared-state) of the guide. +Let's eject `Shared.elm` by moving it from `.elm-spa/defaults` into our `src` folder. This will allow us to make local changes to it, as explained in the [shared state section](/guide/05-shared-state) of the guide. Our first step is to add `Storage` to our `Shared.Model`, so we can access `storage` from _any_ page in our application: