1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-08-17 20:51:20 +02:00

Fixes a small error in a code example in HTML walkthrough. (#280)

This commit is contained in:
Nick Passarella
2016-08-31 22:35:34 -04:00
committed by Ian Storm Taylor
parent 0893418bca
commit 43d5735cc9

View File

@@ -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') ||
'<p></p>'
)