We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06117e4 commit ade532cCopy full SHA for ade532c
src/runtime.md
@@ -51,8 +51,7 @@ fn panic(info: &PanicInfo) -> ! {
51
52
### Standard behavior
53
54
-The standard library provides an implementation of `panic_handler` than can be
55
-statically customized using the `-C panic` flag. `-C panic=abort` makes panics
56
-abort the process, and `-C panic=unwind` makes panics unwind the panicking
57
-thread. If no panicking behavior is specified using `-C panic` one of these two
58
-behaviors is chosen according to the compilation target.
+The standard library provides an implementation of `panic_handler` than defaults
+to unwinding the stack but that can be [changed to abort the process][abort].
+
+[abort]: ../book/2018-edition/ch09-01-unrecoverable-errors-with-panic.html
0 commit comments