Fixed link in ffi documentation

This commit is contained in:
Ryan Riginding 2015-02-18 09:16:22 +01:00
parent 6c065fc8cb
commit b8527c07dc

View file

@ -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.