Skip to content

Commit 092fa17

Browse files
authored
Update index.html
1 parent a255b77 commit 092fa17

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1002,7 +1002,7 @@ <h4 style="font-size:160%;margin:7px">Trigonometry</h4>
10021002

10031003
let radian = null;
10041004

1005-
if (x >= 0.707 || x < 0.09) {
1005+
if (x > 0.706 || x < 0.09) {
10061006
// Direct match
10071007
const match = closestValue(x, 'sin');
10081008
if (!match?.angle) return null;
@@ -1026,7 +1026,7 @@ <h4 style="font-size:160%;margin:7px">Trigonometry</h4>
10261026

10271027
let radian = null;
10281028

1029-
if (x > 0.707 && x < 0.995) {
1029+
if (x < 0.707 || x > 0.995) {
10301030
// Direct match
10311031
const match = closestValue(x, 'cos');
10321032
if (!match?.angle) return null;

0 commit comments

Comments
 (0)