From fc4c22fc26eb5b4943cd7c78ea50f2fbc3b4e694 Mon Sep 17 00:00:00 2001 From: cdmain Date: Fri, 20 Dec 2024 11:16:34 +0200 Subject: [PATCH 1/2] Update C-project.md Grammatical error fixed --- lessons/05-putting-it-all-together/C-project.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lessons/05-putting-it-all-together/C-project.md b/lessons/05-putting-it-all-together/C-project.md index 83c2925..bf9d082 100644 --- a/lessons/05-putting-it-all-together/C-project.md +++ b/lessons/05-putting-it-all-together/C-project.md @@ -53,7 +53,7 @@ Okay, now that you have requirements, let's go over some tips and hints. A brief note on what is called **types** in JavaScript. We've danced the idea already and I want to make it a little more concrete for you. Strings, booleans, objects, arrays, numbers, these are different types of types (lol). JavaScript is a language where you don't have to concern yourself _a lot_ with types since it doesn't strictly enforce them (other languages do) but in this problem you are definitely going to have to deal with it. -Whatever you put into the DOM and whatever you get out it are going to strings, every time. If I do: +Whatever you put into the DOM and whatever you get out of it are going to strings, every time. If I do:
From 742503da42fe27613fe271b1c3ac17a97790272e Mon Sep 17 00:00:00 2001 From: cdmain Date: Fri, 20 Dec 2024 11:19:19 +0200 Subject: [PATCH 2/2] Update C-project.md Grammatical error fixed --- lessons/05-putting-it-all-together/C-project.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lessons/05-putting-it-all-together/C-project.md b/lessons/05-putting-it-all-together/C-project.md index bf9d082..1176d64 100644 --- a/lessons/05-putting-it-all-together/C-project.md +++ b/lessons/05-putting-it-all-together/C-project.md @@ -53,7 +53,7 @@ Okay, now that you have requirements, let's go over some tips and hints. A brief note on what is called **types** in JavaScript. We've danced the idea already and I want to make it a little more concrete for you. Strings, booleans, objects, arrays, numbers, these are different types of types (lol). JavaScript is a language where you don't have to concern yourself _a lot_ with types since it doesn't strictly enforce them (other languages do) but in this problem you are definitely going to have to deal with it. -Whatever you put into the DOM and whatever you get out of it are going to strings, every time. If I do: +Whatever you put into the DOM and whatever you get out of it are going to be strings, every time. If I do: