aboutsummaryrefslogtreecommitdiff
path: root/language.md
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2022-09-09 19:14:48 +0100
committerJuan J. Martinez <jjm@usebox.net>2022-09-09 19:14:48 +0100
commit94edc33c318f60cd7de3ae8537df6eb269fc9deb (patch)
tree3bb225d22acb7b888a476e57f04b48921d54b436 /language.md
parentb2cc17cf26e4ee5e327fcbc92fd597ecb15cb75b (diff)
downloadmicro-lang-hs-94edc33c318f60cd7de3ae8537df6eb269fc9deb.tar.gz
micro-lang-hs-94edc33c318f60cd7de3ae8537df6eb269fc9deb.zip
That was incorrect
Diffstat (limited to 'language.md')
-rw-r--r--language.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/language.md b/language.md
index 2354ae5..63b2b1d 100644
--- a/language.md
+++ b/language.md
@@ -66,7 +66,7 @@ var (
Variables must be initialized, there are not default values, with the exception of structures that is optional.
-Variables can refer to a memory address with `@` operator and the data on that address will be used as initialization:
+Variables can refer to a memory address with `@` operator:
```
var p: u8 = @0x8000;