From 5bc204546cd8ba1b8204f353bcf3e682b19ed4bc Mon Sep 17 00:00:00 2001 From: antirez Date: Wed, 1 Feb 2023 22:54:33 +0100 Subject: [PATCH] README: fix markdown of a code block. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a7b1195..fdc5bcb 100644 --- a/README.md +++ b/README.md @@ -116,10 +116,10 @@ To push an empty list on the stack, you can use: Then it is possible to add elements to the tail or the head of the list using the `<-` and `->` procedures: -aocla> 1 swap -> -[1] -aocla> 2 swap -> -[1 2] + aocla> 1 swap -> + [1] + aocla> 2 swap -> + [1 2] Note that these procedures are designed to insert the last element in the stack into the list that is the penultimate element in the stack, so,