From cb2d511a722060ceb2d54c2b580bfcf6a94285f6 Mon Sep 17 00:00:00 2001 From: Sanket Shah Date: Sat, 9 Apr 2022 11:24:39 +0530 Subject: [PATCH] Docs: minor grammer fix Fix grammatical mistake in Type Conversions section --- 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 cf97b330..e92e97c8 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. ```