From 60ea5f6bc40ad77cfbf8e95fc5e006e084e9185d Mon Sep 17 00:00:00 2001 From: Brent Guffens Date: Wed, 17 Jan 2018 11:24:53 +0100 Subject: [PATCH] Remove quotes around unary negation operator --- 1-js/02-first-steps/07-operators/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/07-operators/article.md b/1-js/02-first-steps/07-operators/article.md index df24311c..4f8d8cec 100644 --- a/1-js/02-first-steps/07-operators/article.md +++ b/1-js/02-first-steps/07-operators/article.md @@ -11,7 +11,7 @@ In this chapter we concentrate on aspects that are not covered by school arithme Before we move on, let's grasp the common terminology. - *An operand* -- is what operators are applied to. For instance in multiplication `5 * 2` there are two operands: the left operand is `5`, and the right operand is `2`. Sometimes people say "arguments" instead of "operands". -- An operator is *unary* if it has a single operand. For example, the unary negation `"-"` reverses the sign of the number: +- An operator is *unary* if it has a single operand. For example, the unary negation `-` reverses the sign of the number: ```js run let x = 1;