Skip to content

Commit fb15b22

Browse files
Square Root Symbol
Sometimes, the symbol of square root is not returning correctly. So, to be sure, I replaced that with `sqrt`.
1 parent 661f954 commit fb15b22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/simplejavacalculator/UI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public UI() {
9191
butMultiply = new JButton("*");
9292
butDivide = new JButton("/");
9393
butEqual = new JButton("=");
94-
butSquareRoot = new JButton("√");
94+
butSquareRoot = new JButton("sqrt");
9595
butSquare = new JButton("x*x");
9696
butOneDevidedBy = new JButton("1/x");
9797
butCos = new JButton("Cos");

0 commit comments

Comments
 (0)