Skip to content

Commit

Permalink
Fix misleading indentation in code sample
Browse files Browse the repository at this point in the history
  • Loading branch information
koutheir authored Jul 15, 2024
1 parent 56147e9 commit ec028f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions book.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit ec028f2

Please sign in to comment.