From e075b7dabacbe3d04a300463e4e74e670c769cc6 Mon Sep 17 00:00:00 2001 From: meanmegajean <44273878+meanmegajean@users.noreply.github.com> Date: Sat, 27 Oct 2018 10:38:38 -0600 Subject: [PATCH] Adding two commas to sentence (#20077) --- guide/english/javascript/booleans/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/javascript/booleans/index.md b/guide/english/javascript/booleans/index.md index 2840449ef6..c97889f2be 100644 --- a/guide/english/javascript/booleans/index.md +++ b/guide/english/javascript/booleans/index.md @@ -6,7 +6,7 @@ title: Boolean Booleans are a primitive datatype commonly used in computer programming languages. By definition, a boolean has two possible values: `true` or `false`. -In Javascript, there is often implicit type coercion to boolean. If for example you have an if statement which checks a certain expression, that expression will be coerced to a boolean: +In Javascript, there is often implicit type coercion to boolean. If, for example, you have an if statement which checks a certain expression, that expression will be coerced to a boolean: ```javascript var a = 'a string';