Skip to content

Commit 7384cbe

Browse files
committed
Fixing links on code.md and const.md
Fixes the links to types.md in these two files to a possible intended state
1 parent 2630c43 commit 7384cbe

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ code(<value>)
1111

1212
Returns the ASCII code of the first character of the given string value.
1313
If the string is empty, the returned value is 0.
14-
Returned value type is [UByte](types.md#UByte).
14+
Returned value type is [UByte](types.md#Integral).
1515

1616
## Examples
1717

docs/const.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ CONST <varname> [AS <type>] = <value>
1313
**CONST** declares a non-modifable variable.
1414

1515
`<type>` can be something like `Integer`, `Byte`, `Float`, etc.
16-
See the list of [available types](types.md#types.md). If type is not specified,
16+
See the list of [available types](types.md#types). If type is not specified,
1717
`Float` will be used, unless you use a modifier like `$` or `%`.
1818

1919
## Examples

0 commit comments

Comments
 (0)