From 59e816da77e80927ed3ee2d71eb1e156a653712e Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 13 May 2020 13:06:16 -0700 Subject: [PATCH] Really fix a documentation link. --- crates/wasmtime/src/trap.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/wasmtime/src/trap.rs b/crates/wasmtime/src/trap.rs index f4ca1af14981..4c160b4cfe0a 100644 --- a/crates/wasmtime/src/trap.rs +++ b/crates/wasmtime/src/trap.rs @@ -168,7 +168,7 @@ impl Trap { /// Returns a reference the `message` stored in `Trap`. /// /// In the case of an explicit exit, the exit status can be obtained by - /// calling [`i32_exit_status`](Self::i32_exit_status). + /// calling `i32_exit_status`. pub fn message(&self) -> &str { match &self.inner.reason { TrapReason::Message(message) => message,