Fix code indentation in the backtrace post

This commit is contained in:
Konstantin Nazarov 2024-09-15 04:40:04 +01:00
parent 03e2bf1d79
commit 450e327061
Signed by: knazarov
GPG key ID: 4CFE0A42FA409C22

View file

@ -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: 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 ;; This will fail becaue :foo is not present