Update README.md

This commit is contained in:
Attila Magyar 2021-06-24 12:15:16 +02:00 committed by GitHub
parent 9ae8eea299
commit e2303a8979
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -278,7 +278,7 @@ A list is a dynamic, ordered data structed. `[` and `]` are Forth words, so a wh
```
```forth
1 2 3 4 5 <list*> \ creates a new list and loads all items from the stack into it
1 2 3 4 5 list* \ creates a new list and loads all items from the stack into it
```
```forth
@ -327,7 +327,7 @@ Maps contain key value pairs.
```
```forth
'key1' 'value1' <map*> \ creates a new map and loads all items from the stack into it. There must be an even number of items on the stack.
'key1' 'value1' map* \ creates a new map and loads all items from the stack into it. There must be an even number of items on the stack.
```
```forth