File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Returns the sign of a numeric expression as follows:
1212* 0 if the number is zero
1313* 1 if the number is positive
1414
15- The returned value type is [ byte] ( types.md#Byte ) .
15+ The returned value type is [ byte] ( types.md#integral ) .
1616
1717## Examples
1818
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ SIN(numericExpression)
99## Description
1010
1111Returns the sine value of the given argument.
12- Argument must be a numeric expression in radians units. Returned value type is [ float] ( types.md#Float ) .
12+ Argument must be a numeric expression in radians units. Returned value type is [ float] ( types.md#float ) .
1313
1414## Examples
1515
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ SQR(numericExpression)
1010## Description
1111
1212Returns the square root value of the given argument.
13- Argument must be a numeric expression, and is returned as type [ float] ( types.md#Float ) .
13+ Argument must be a numeric expression, and is returned as type [ float] ( types.md#float ) .
1414
1515## Examples
1616
Original file line number Diff line number Diff line change 1515```
1616
1717## See Also
18+
1819 * [ END] ( end.md )
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ STR(<numeric value>)
1010## Description
1111
1212Converts the given numeric value to a String. It's the opposite of [ VAL] ( val.md )
13- Returned value type is [ String] ( types.md#UByte ) .
13+ Returned value type is [ String] ( types.md#integral ) .
1414
1515## Examples
1616
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ TAN(numericExpression)
1111## Description
1212
1313Returns the tangent value of the given argument.
14- Argument must be a numeric expression in radians units. Returned value type is [ float] ( types.md#Float ) .
14+ Argument must be a numeric expression in radians units. Returned value type is [ float] ( types.md#float ) .
1515
1616## Examples
1717
@@ -31,4 +31,4 @@ PRINT "Tangent value of a is "; TAN(a)
3131* [ SIN] ( sin.md ) and [ ASN] ( asn.md )
3232* [ COS] ( cos.md ) and [ ACS] ( acs.md )
3333* [ ATN] ( atn.md )
34- * Faster library option for lower accuracy trigonometry for games: [ FTAN] ( library/fsin.bas.md )
34+ * Faster library option for lower accuracy trigonometry for games: [ FTAN] ( library/fsin.bas.md#tangent-function )
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ value (uInteger) returned by the function.
1919If used with a string argument, it will return the UDG (User Defined Graphic) memory address of the first character of the string.
2020For example, for the ` \A ` UDG, ` USR "a" ` will return the address of it. This function is case insensitive.
2121
22- Returned value type is [ UInteger] ( types.md#Integral ) .
22+ Returned value type is [ UInteger] ( types.md#integral ) .
2323
2424## Examples
2525
You can’t perform that action at this time.
0 commit comments