From 97fe8030decd10440b8f6c1f4e86686d7016a519 Mon Sep 17 00:00:00 2001
From: Vladyslav Nikiforov <91598576+VladNcode@users.noreply.github.com>
Date: Mon, 17 Oct 2022 06:37:34 +0300
Subject: [PATCH] Fix arithmetic operators typo (#2565)
---
.../102-arithmetic-operators.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/content/roadmaps/106-javascript/content/108-javascript-expressions-and-operators/102-arithmetic-operators.md b/content/roadmaps/106-javascript/content/108-javascript-expressions-and-operators/102-arithmetic-operators.md
index 34327526b..afa210c2b 100644
--- a/content/roadmaps/106-javascript/content/108-javascript-expressions-and-operators/102-arithmetic-operators.md
+++ b/content/roadmaps/106-javascript/content/108-javascript-expressions-and-operators/102-arithmetic-operators.md
@@ -10,7 +10,7 @@ Arithmetic operators in JavaScript are as follows:
- `/` (Division)
- `%` (Modulus i.e. Remainder)
- `++` (Increment)
-- `++` (Decrement)
+- `--` (Decrement)
Arithmetic Operators - MDN
Arithmetic Operators - JavaScript.info