From 06b53fdf7bfd8dfc1637f5b9e7ef3f74031da646 Mon Sep 17 00:00:00 2001 From: Roberto Vidal Date: Thu, 13 Dec 2018 13:34:55 +0100 Subject: [PATCH] Fixes dead bindgen link --- src/interoperability/c-with-rust.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interoperability/c-with-rust.md b/src/interoperability/c-with-rust.md index 89432de..5263062 100644 --- a/src/interoperability/c-with-rust.md +++ b/src/interoperability/c-with-rust.md @@ -88,7 +88,7 @@ Rather than manually generating these interfaces, which may be tedious and error 4. `bindgen` will produce the generated Rust code to the output of the terminal window. This file may be piped to a file in your project, such as `bindings.rs`. You may use this file in your Rust project to interact with C/C++ code compiled and linked as an external library [bindgen]: https://github.com/rust-lang-nursery/rust-bindgen -[bindgen user's manual]: https://rust-lang-nursery.github.io/rust-bindgen/ +[bindgen user's manual]: https://rust-lang.github.io/rust-bindgen/ ## Building your C/C++ code