Skip to content

Commit e26d4c8

Browse files
Fix markdown error
1 parent 6dd66f1 commit e26d4c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_posts/2024-09-20-error-handling.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Exceptions are a common mechanism for reporting errors.
2626
Exceptions are a form of non-local return: they transfer control flow to a function higher up the stack to report the error.
2727

2828
On most modern platforms, exceptions are implemented using a *table-driven unwinder*.
29-
The exact details differ between 64-bit Windows and *NIX systems, but the underlying mechanisms are very similar.
29+
The exact details differ between 64-bit Windows and \*NIX systems, but the underlying mechanisms are very similar.
3030
For each function, the compiler emits a table that describes how to unwind the stack.
3131
A generic unwinder library can read this information and pop each frame off the call stack, one at a time.
3232
Language-specific exceptions are built on top of this.

0 commit comments

Comments
 (0)