From ec028f2a2c99988268cb6ba78854f7e0358210a8 Mon Sep 17 00:00:00 2001 From: Koutheir Attouchi Date: Mon, 15 Jul 2024 15:21:48 -0400 Subject: [PATCH] Fix misleading indentation in code sample --- book.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/book.md b/book.md index f122462..0248f24 100644 --- a/book.md +++ b/book.md @@ -2065,11 +2065,11 @@ Let's illustrate that with an example. The following C code ``` {.c} long abs(long a) { - if (a>=0) + if (a >= 0) return a; else return -a; - } +} ``` can be translated to the following AArch64 assembly code: ``` {.asm}