From 3d96d2a30959d648a1bdff1452320f9868bc0c64 Mon Sep 17 00:00:00 2001 From: Prayag Verma Date: Thu, 23 Mar 2017 23:13:34 +0530 Subject: [PATCH] Fix a typo in walkthroughs/saving-to-a-database (#681) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit intial → initial --- docs/walkthroughs/saving-to-a-database.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/walkthroughs/saving-to-a-database.md b/docs/walkthroughs/saving-to-a-database.md index b6f7cfc54..10f2ab7d7 100644 --- a/docs/walkthroughs/saving-to-a-database.md +++ b/docs/walkthroughs/saving-to-a-database.md @@ -44,7 +44,7 @@ What we need to do is save the changes you make somewhere. For this example, we' So, in our `onChange` handler, we need to save the `state`. But the `state` argument that `onChange` receives is an immutable object, so we can't just save it as-is. We need to serialize it to a format we understand first. -In this case, we're already using the [`Plain`](../reference/serializers/plain.md) serializer to create our intial state, so let's use it to serialize our saved state as well, like so: +In this case, we're already using the [`Plain`](../reference/serializers/plain.md) serializer to create our initial state, so let's use it to serialize our saved state as well, like so: ```js const initialContent = 'The initial string of content!'