From 2262edd1348f516d00f1c98dc32388992be53af0 Mon Sep 17 00:00:00 2001 From: Travis Benfield Date: Fri, 29 Mar 2019 16:13:23 -0400 Subject: [PATCH] Grammar fix (#33047) --- guide/english/javascript/comparison-operators/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/javascript/comparison-operators/index.md b/guide/english/javascript/comparison-operators/index.md index b3fa7465ce..9e00db82bb 100644 --- a/guide/english/javascript/comparison-operators/index.md +++ b/guide/english/javascript/comparison-operators/index.md @@ -29,7 +29,7 @@ JavaScript has both **strict** and **type–converting** comparisons. ### Equality (==) -The equality operator converts the operands if they are **not of the same type**, then applies strict comparison. If **both operands are objects**, then JavaScript compares internal references which are equal when operands refer to the same object in memory. +The equality operator converts the operands if they are **not of the same type**, then applies strict comparison. If **both operands are objects**, then JavaScript compares internal references, which are equal when operands refer to the same object in memory. #### Syntax