From a5f6a988bced383b0dcb390e34e753be22ccabc4 Mon Sep 17 00:00:00 2001 From: Matt Jackson <2736980+matjax@users.noreply.github.com> Date: Mon, 4 May 2020 14:45:28 +0100 Subject: [PATCH 1/3] small phrase change --- 1-js/02-first-steps/07-type-conversions/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/07-type-conversions/article.md b/1-js/02-first-steps/07-type-conversions/article.md index 723d8863..dc703b6d 100644 --- a/1-js/02-first-steps/07-type-conversions/article.md +++ b/1-js/02-first-steps/07-type-conversions/article.md @@ -7,7 +7,7 @@ For example, `alert` automatically converts any value to a string to show it. Ma There are also cases when we need to explicitly convert a value to the expected type. ```smart header="Not talking about objects yet" -In this chapter, we won't cover objects. We'll be talking about primitives just yet. +In this chapter, we won't cover objects. We'll only be talking about primitives. Later, after we learn about objects, in the chapter we'll see how objects fit in. ``` From ea397041e0bbd3fa9d94bad68678d4a8402e9a14 Mon Sep 17 00:00:00 2001 From: Matt Jackson <2736980+matjax@users.noreply.github.com> Date: Tue, 5 May 2020 11:42:11 +0100 Subject: [PATCH 2/3] small phrase change 1.1 --- 1-js/02-first-steps/07-type-conversions/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/07-type-conversions/article.md b/1-js/02-first-steps/07-type-conversions/article.md index dc703b6d..55bea0a5 100644 --- a/1-js/02-first-steps/07-type-conversions/article.md +++ b/1-js/02-first-steps/07-type-conversions/article.md @@ -7,7 +7,7 @@ For example, `alert` automatically converts any value to a string to show it. Ma There are also cases when we need to explicitly convert a value to the expected type. ```smart header="Not talking about objects yet" -In this chapter, we won't cover objects. We'll only be talking about primitives. +In this chapter, we won’t cover objects. For now we'll just be talking about primitives. Later, after we learn about objects, in the chapter we'll see how objects fit in. ``` From fd45b7fdc506afd25dffc5018084eb1e8ca082f4 Mon Sep 17 00:00:00 2001 From: Matt Jackson <2736980+matjax@users.noreply.github.com> Date: Tue, 5 May 2020 11:46:52 +0100 Subject: [PATCH 3/3] apostrophe --- 1-js/02-first-steps/07-type-conversions/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/07-type-conversions/article.md b/1-js/02-first-steps/07-type-conversions/article.md index 55bea0a5..cf97b330 100644 --- a/1-js/02-first-steps/07-type-conversions/article.md +++ b/1-js/02-first-steps/07-type-conversions/article.md @@ -7,7 +7,7 @@ For example, `alert` automatically converts any value to a string to show it. Ma There are also cases when we need to explicitly convert a value to the expected type. ```smart header="Not talking about objects yet" -In this chapter, we won’t cover objects. For now we'll just be talking about primitives. +In this chapter, we won't cover objects. For now we'll just be talking about primitives. Later, after we learn about objects, in the chapter we'll see how objects fit in. ```