From 1419ecbf5157d282c7fe1a6edae3063cbe5670e6 Mon Sep 17 00:00:00 2001 From: Adam Naglich Date: Wed, 13 Feb 2019 15:05:23 -0500 Subject: [PATCH] Added a missing comma --- 1-js/02-first-steps/02-structure/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/02-structure/article.md b/1-js/02-first-steps/02-structure/article.md index 8f8eb86a..6fe7041e 100644 --- a/1-js/02-first-steps/02-structure/article.md +++ b/1-js/02-first-steps/02-structure/article.md @@ -6,7 +6,7 @@ The first thing we'll study is the building blocks of code. Statements are syntax constructs and commands that perform actions. -We've already seen a statement, `alert('Hello, world!')`, which shows the message "Hello world!". +We've already seen a statement, `alert('Hello, world!')`, which shows the message "Hello, world!". We can have as many statements in our code as we want. Statements can be separated with a semicolon.