From 2d38377f1f3650c8a6feb686f1b7a36cd03e47e1 Mon Sep 17 00:00:00 2001 From: Henrikh Kantuni Date: Wed, 5 Apr 2023 01:02:45 -0400 Subject: [PATCH] Fix typo --- docs/public/content/examples/03-storage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/public/content/examples/03-storage.md b/docs/public/content/examples/03-storage.md index 3977eff..4a2c67a 100644 --- a/docs/public/content/examples/03-storage.md +++ b/docs/public/content/examples/03-storage.md @@ -245,7 +245,7 @@ This should look pretty similar to how our homepage handled the `Increment` and ### Listening for data from JS -We're going to add one final function to `Storage.elm` that will allow us to subscribe to events from the `load` port, that use's our `fromJson` function to safely parse the message we get back: +We're going to add one final function to `Storage.elm` that will allow us to subscribe to events from the `load` port, that uses our `fromJson` function to safely parse the message we get back: ```elm onChange : (Storage -> msg) -> Sub msg