Skip to content

Commit 2630c43

Browse files
committed
Update poke.md and types.md
Fix links on poke.md and clarify Integrals on types.md
1 parent 72bf05f commit 2630c43

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/poke.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ poke <type> <address>, <value>
1111

1212
Stores the given (numeric) _value_ at the specified memory _address_. If _valueType_ is omitted, it is supposed to be _ubyte_ (8 bit unsigned integer).
1313

14-
The _value_ is [converted](cast.md) to the given _[valueType](zx_basic:types.md)_ and stored at the given _Address_. _Type_ can be any numeric one (like _[float](zx_basic:types#float.md)_ or _[integer](zx_basic:types#integer.md)_).
14+
The _value_ is [converted](cast.md) to the given _[valueType](types.md)_ and stored at the given _Address_. _Type_ can be any numeric one (like _[float](types.md#float)_ or _[integer](types.md#integral)_).
1515

1616
## Examples
1717

docs/types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ to save memory and achieve higher speed.
2020
There are 3 kinds of types: **integrals** (integer numbers), **decimals** and **strings**
2121

2222
### Integral
23-
Integrals are numerical types to store integer values.
23+
Integrals (or Integers) are numerical types to store integer values.
2424
They can be _unsigned_ (their value is always 0 or positive) or _signed_ (can take negative values).
2525
ZX Basic integer types sizes are 8, 16 and 32 bits. Unsigned types have the prefix _U_.
2626

0 commit comments

Comments
 (0)