From 5f36fc705b6943db3917554328cc061db92baf12 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Fri, 7 Sep 2018 20:18:36 +0200 Subject: [PATCH] make link relative --- src/panic-handler.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panic-handler.md b/src/panic-handler.md index 8c9a43e..6a22d72 100644 --- a/src/panic-handler.md +++ b/src/panic-handler.md @@ -5,7 +5,7 @@ The `#[panic_handler]` attribute must be applied to a function with signature `f -> !` and such function must appear *once* in the dependency graph of a binary / dylib / cdylib crate. The API of `PanicInfo` can be found in the [API docs]. -[API docs]: https://doc.rust-lang.org/nightly/core/panic/struct.PanicInfo.html +[API docs]: ../core/panic/struct.PanicInfo.html Given that `#![no_std]` applications have no *standard* output and that some `#![no_std]` applications, e.g. embedded applications, need different panicking behaviors for development and for