From 817e68b8b34ee1a854a98a0f7bc901df18ec5548 Mon Sep 17 00:00:00 2001 From: Alek Shnayder Date: Sun, 25 Oct 2015 09:52:53 -0500 Subject: [PATCH] Added Comma to Sample Code Missing comma after dessert value of myOptions so sample code would error if tried, added it in. Before (Line 10): dessert: 'cake' After (Line 10): dessert: 'cake', --- .../file-system/how-to-store-local-config-data/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/articles/file-system/how-to-store-local-config-data/content.md b/pages/articles/file-system/how-to-store-local-config-data/content.md index 548cec7..4a959bc 100644 --- a/pages/articles/file-system/how-to-store-local-config-data/content.md +++ b/pages/articles/file-system/how-to-store-local-config-data/content.md @@ -7,7 +7,7 @@ Let's take a look at a very simple (and contrived) example. First, to save some var myOptions = { name: 'Avian', - dessert: 'cake' + dessert: 'cake', flavor: 'chocolate', beverage: 'coffee' };