Skip to content

Commit 04eb80d

Browse files
Update target_panic.md
1 parent 21f4d73 commit 04eb80d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/target_panic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ In the C++ runtime, the target_panic looks like something like this.
88
``` cpp
99
extern "C" void target_panic(int code) {
1010
DMESG("PANIC %d", code);
11-
exit(1); // EXIT: this a builtin method in the C++ standard libraries, unrelated to MakeCode specific runtime functions
11+
exit(1); // this a builtin method in the C++ standard libraries, unrelated to MakeCode specific runtime functions
1212
}
1313
```
1414

0 commit comments

Comments
 (0)