From 8489afd7c6e583ecb0fb24d128f6fbbd68f50882 Mon Sep 17 00:00:00 2001 From: dhx-mike-palandra <45608336+dhx-mike-palandra@users.noreply.github.com> Date: Thu, 30 May 2019 17:18:48 -0400 Subject: [PATCH] Update article.md Sensible re-ordering of words. --- 1-js/05-data-types/11-json/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/11-json/article.md b/1-js/05-data-types/11-json/article.md index 0f526c59..cce3d1df 100644 --- a/1-js/05-data-types/11-json/article.md +++ b/1-js/05-data-types/11-json/article.md @@ -66,7 +66,7 @@ alert(json); The method `JSON.stringify(student)` takes the object and converts it into a string. -The resulting `json` string is a called *JSON-encoded* or *serialized* or *stringified* or *marshalled* object. We are ready to send it over the wire or put into a plain data store. +The resulting `json` string is called a *JSON-encoded* or *serialized* or *stringified* or *marshalled* object. We are ready to send it over the wire or put into a plain data store. Please note that a JSON-encoded object has several important differences from the object literal: