From a5238e4b36e64c95b46c29788d26335e9445e9cb Mon Sep 17 00:00:00 2001 From: Adithya212 <81566547+Adithya212@users.noreply.github.com> Date: Sun, 30 Jul 2023 14:46:49 +0530 Subject: [PATCH] update main.js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit changed the division operator '/' to ÷ --- js/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/main.js b/js/main.js index fd644e0..4c654cd 100644 --- a/js/main.js +++ b/js/main.js @@ -115,7 +115,7 @@ function generateNumbers_and_sign(diff_lvl, sign) { } else if (sign === 'multiplication') { arithmetic_sign = 'x'; } else if (sign === 'division') { - arithmetic_sign = '/'; + arithmetic_sign = '÷'; } // AVOIDING REPEATING PREVIOUS QUESTION's NUMBERS