about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-02-18 14:32:12 -0800
committerAlex Crichton <alex@alexcrichton.com>2015-02-18 14:32:12 -0800
commitb90e40718f8e98dd99731e114a63ddbfb177dd25 (patch)
tree14c7d6d954c301b82e51abc47b46dfd8f9989a26
parentf3657170b1cbe80393d9ccde8608872f7bdc68f2 (diff)
parentb8527c07dc401a39a051da2ca886b24d8be7e589 (diff)
downloadrust-b90e40718f8e98dd99731e114a63ddbfb177dd25.tar.gz
rust-b90e40718f8e98dd99731e114a63ddbfb177dd25.zip
rollup merge of #22484: riginding/master
-rw-r--r--src/doc/trpl/ffi.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/ffi.md b/src/doc/trpl/ffi.md
index 60750160f5f..97e826579fd 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.