From 41e7242c16c017036b1fa7c8ad07487d5f08e80c Mon Sep 17 00:00:00 2001 From: haftav Date: Wed, 24 Oct 2018 14:35:51 -0600 Subject: [PATCH] Grammar fix (#28149) --- guide/english/javascript/ternary-operator/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/javascript/ternary-operator/index.md b/guide/english/javascript/ternary-operator/index.md index 18a0fb0602..3beae89645 100644 --- a/guide/english/javascript/ternary-operator/index.md +++ b/guide/english/javascript/ternary-operator/index.md @@ -40,7 +40,7 @@ Another useful method to using a Ternary operator would be to envoke it to condi ## Running functions with ternary operator -It's also possible to run functions using ternary operator, which sometimes can be useful and more readable. However, use it carefully, because then code is harder to debug. +It's also possible to run functions using the ternary operator, which sometimes can be useful and more readable. However, use it carefully, because then code is harder to debug. ```javascript const runFirst = true;