Skip to content

Commit 03c3581

Browse files
authored
Fix C example (#98)
1 parent 494a1e8 commit 03c3581

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ store<i32>(ptr, load<i32>(ptr) + load<i32>(ptr, 4), 8)
4343
For comparision, the following C code is roughly equivalent:
4444

4545
```c
46-
*(ptr + 8) = *ptr + *(ptr + 4)
46+
*(ptr + 2) = *ptr + *(ptr + 1)
4747
```
4848

4949
## High-level perspective

0 commit comments

Comments
 (0)