From e2303a89794c63572006473d8ee80429127574ac Mon Sep 17 00:00:00 2001 From: Attila Magyar Date: Thu, 24 Jun 2021 12:15:16 +0200 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 56639c7..b83f127 100644 --- a/README.md +++ b/README.md @@ -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 \ 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' \ 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