Skip to content

Commit a80ce70

Browse files
committed
More link corrections
Link fixes and consistency corrections
1 parent 6bd48e6 commit a80ce70

7 files changed

Lines changed: 8 additions & 7 deletions

File tree

docs/sgn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

docs/sin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ SIN(numericExpression)
99
## Description
1010

1111
Returns 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

docs/sqr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ SQR(numericExpression)
1010
## Description
1111

1212
Returns 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

docs/stop.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@ STOP
1515
```
1616

1717
## See Also
18+
1819
* [END](end.md)

docs/str.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ STR(<numeric value>)
1010
## Description
1111

1212
Converts 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

docs/tan.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ TAN(numericExpression)
1111
## Description
1212

1313
Returns 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)

docs/usr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ value (uInteger) returned by the function.
1919
If used with a string argument, it will return the UDG (User Defined Graphic) memory address of the first character of the string.
2020
For 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

0 commit comments

Comments
 (0)