From b8527c07dc401a39a051da2ca886b24d8be7e589 Mon Sep 17 00:00:00 2001 From: Ryan Riginding Date: Wed, 18 Feb 2015 09:16:22 +0100 Subject: [PATCH] Fixed link in ffi documentation --- src/doc/trpl/ffi.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/ffi.md b/src/doc/trpl/ffi.md index f2b95f19edce..d1b32ba161db 100644 --- a/src/doc/trpl/ffi.md +++ b/src/doc/trpl/ffi.md @@ -541,6 +541,6 @@ pub extern fn hello_rust() -> *const u8 { The `extern` makes this function adhere to the C calling convention, as discussed above in "[Foreign Calling -Conventions](guide-ffi.html#foreign-calling-conventions)". The `no_mangle` +Conventions](ffi.html#foreign-calling-conventions)". The `no_mangle` attribute turns off Rust's name mangling, so that it is easier to link to.