chore: Update square root operator display to 'sqrt'

This commit is contained in:
2026-03-13 16:43:49 -06:00
committed by Tanner
parent 8fd4b6e45a
commit 197d393553
+1 -1
View File
@@ -54,7 +54,7 @@ var operators = {
if (process.env.HWVERSION!=1) { if (process.env.HWVERSION!=1) {
operatorsGrid = [2, 4]; operatorsGrid = [2, 4];
operators['='].grid = [1, 3]; operators['='].grid = [1, 3];
operators.r = {grid: [0, 2], val: ''}; operators.r = {grid: [0, 2], val: 'sqrt'};
operators.s = {grid: [1, 2], val: 'x^2'}; operators.s = {grid: [1, 2], val: 'x^2'};
} }