From 43d5735cc94381ef72072e0187faab6dc4caea4b Mon Sep 17 00:00:00 2001 From: Nick Passarella Date: Wed, 31 Aug 2016 22:35:34 -0400 Subject: [PATCH] Fixes a small error in a code example in HTML walkthrough. (#280) --- docs/walkthroughs/saving-and-loading-html-content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/walkthroughs/saving-and-loading-html-content.md b/docs/walkthroughs/saving-and-loading-html-content.md index ca6b77acc..a0aea1b00 100644 --- a/docs/walkthroughs/saving-and-loading-html-content.md +++ b/docs/walkthroughs/saving-and-loading-html-content.md @@ -213,7 +213,7 @@ And finally, now that we have our serializer initialized, we can update our app ```js // Load the initial state from Local Storage or a default. const initialState = ( - localStorage.get('content') || + localStorage.getItem('content') || '

' )