floats: f:tan and f:cos were swapped; this is now fixed (thanks to Doug Bell for spotting this!)

FossilOrigin-Name: 985eb1551cf80d65c60a3ccfc65c38b19f4ec656ea49c174f1f9b5383748d3d9
This commit is contained in:
crc 2023-07-07 13:32:43 +00:00
parent 5a6d96c3cf
commit aef9ef7deb

View file

@ -40,8 +40,8 @@ maps closely to C and `libm`.
:f:log (f:ab-c) #19 float:operation ;
:f:power (f:ab-c) #20 float:operation ;
:f:sin (f:f-f) #21 float:operation ;
:f:cos (f:f-f) #22 float:operation ;
:f:tan (f:f-f) #23 float:operation ;
:f:tan (f:f-f) #22 float:operation ;
:f:cos (f:f-f) #23 float:operation ;
:f:asin (f:f-f) #24 float:operation ;
:f:acos (f:f-f) #25 float:operation ;
:f:atan (f:f-f) #26 float:operation ;