From e172adfb9b6674475301204da58723eb1bdb2308 Mon Sep 17 00:00:00 2001 From: myYearOfCode <40813606+myYearOfCode@users.noreply.github.com> Date: Thu, 25 Oct 2018 10:23:32 -0400 Subject: [PATCH] fix stray paren on increment and decrement (#21036) made the hints for increment and decrement clearer than they previously were. --- guide/english/javascript/arithmetic-operation/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/javascript/arithmetic-operation/index.md b/guide/english/javascript/arithmetic-operation/index.md index b3d1e599fc..cccc71d414 100644 --- a/guide/english/javascript/arithmetic-operation/index.md +++ b/guide/english/javascript/arithmetic-operation/index.md @@ -18,7 +18,7 @@ JavaScript provides the user with five arithmetic operators: `+`, `-`, `*`, `/` 5 + "foo" // concatenates the string and the number and returns "5foo" "foo" + "bar" // concatenates the strings and returns "foobar" -_Hint:_ There is a handy increment) operator that is a great shortcut when you're adding numbers by 1. +_Hint:_ There is a handy increment(++) operator that is a great shortcut when you're adding numbers by 1. ## Subtraction @@ -34,7 +34,7 @@ _Hint:_ There is a handy decrement) operator that is a great shortcut when you're subtracting numbers by 1. +_Hint:_ There is a handy decrement(--) operator that is a great shortcut when you're subtracting numbers by 1. ## Multiplication