From 450e327061201cff27a0ff07475e1e4811428f49 Mon Sep 17 00:00:00 2001 From: Konstantin Nazarov Date: Sun, 15 Sep 2024 04:40:04 +0100 Subject: [PATCH] Fix code indentation in the backtrace post --- content/posts/backtraces_in_valeri/note.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/posts/backtraces_in_valeri/note.md b/content/posts/backtraces_in_valeri/note.md index 3542b40..1915713 100644 --- a/content/posts/backtraces_in_valeri/note.md +++ b/content/posts/backtraces_in_valeri/note.md @@ -9,7 +9,8 @@ runtime errors, you'll now get the call stack printed to stdout, pretty much as you would expect in other programming languages. Let's look at an example: ``` -(fn get-foo (obj) (get obj :foo) +(fn get-foo (obj) + (get obj :foo) ) ;; This will fail becaue :foo is not present