diff options
author | Alex Crichton <alex@alexcrichton.com> | 2015-10-29 11:54:12 -0700 |
---|---|---|
committer | Alex Crichton <alex@alexcrichton.com> | 2015-10-29 11:54:12 -0700 |
commit | 13418a50fc55ba3ed5b7bd6ee204ec8fda9f4b2f (patch) | |
tree | 3174aa784dbdc116d76e0fdbed7b917a212adb5f /src/lib.rs | |
parent | 657eeec3b6f608e8315079247bab5082d8c6b538 (diff) | |
download | rust-libc-13418a50fc55ba3ed5b7bd6ee204ec8fda9f4b2f.tar.gz |
Improve the README and switch URLs
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/lib.rs b/src/lib.rs index 84d89adcf2..67d7416ad0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -17,43 +17,43 @@ html_favicon_url = "https://doc.rust-lang.org/favicon.ico")] #![cfg_attr(all(target_os = "linux", target_arch = "x86_64"), doc( - html_root_url = "http://alexcrichton.com/libc/x86_64-unknown-linux-gnu" + html_root_url = "https://doc.rust-lang.org/libc/x86_64-unknown-linux-gnu" ))] #![cfg_attr(all(target_os = "linux", target_arch = "x86"), doc( - html_root_url = "http://alexcrichton.com/libc/i686-unknown-linux-gnu" + html_root_url = "https://doc.rust-lang.org/libc/i686-unknown-linux-gnu" ))] #![cfg_attr(all(target_os = "linux", target_arch = "arm"), doc( - html_root_url = "http://alexcrichton.com/libc/arm-unknown-linux-gnueabihf" + html_root_url = "https://doc.rust-lang.org/libc/arm-unknown-linux-gnueabihf" ))] #![cfg_attr(all(target_os = "linux", target_arch = "mips"), doc( - html_root_url = "http://alexcrichton.com/libc/mips-unknown-linux-gnu" + html_root_url = "https://doc.rust-lang.org/libc/mips-unknown-linux-gnu" ))] #![cfg_attr(all(target_os = "linux", target_arch = "aarch64"), doc( - html_root_url = "http://alexcrichton.com/libc/aarch64-unknown-linux-gnu" + html_root_url = "https://doc.rust-lang.org/libc/aarch64-unknown-linux-gnu" ))] #![cfg_attr(all(target_os = "linux", target_env = "musl"), doc( - html_root_url = "http://alexcrichton.com/libc/x86_64-unknown-linux-musl" + html_root_url = "https://doc.rust-lang.org/libc/x86_64-unknown-linux-musl" ))] #![cfg_attr(all(target_os = "macos", target_arch = "x86_64"), doc( - html_root_url = "http://alexcrichton.com/libc/x86_64-apple-darwin" + html_root_url = "https://doc.rust-lang.org/libc/x86_64-apple-darwin" ))] #![cfg_attr(all(target_os = "macos", target_arch = "x86"), doc( - html_root_url = "http://alexcrichton.com/libc/i686-apple-darwin" + html_root_url = "https://doc.rust-lang.org/libc/i686-apple-darwin" ))] #![cfg_attr(all(windows, target_arch = "x86_64", target_env = "gnu"), doc( - html_root_url = "http://alexcrichton.com/libc/x86_64-pc-windows-gnu" + html_root_url = "https://doc.rust-lang.org/libc/x86_64-pc-windows-gnu" ))] #![cfg_attr(all(windows, target_arch = "x86", target_env = "gnu"), doc( - html_root_url = "http://alexcrichton.com/libc/i686-pc-windows-gnu" + html_root_url = "https://doc.rust-lang.org/libc/i686-pc-windows-gnu" ))] #![cfg_attr(all(windows, target_arch = "x86_64", target_env = "msvc"), doc( - html_root_url = "http://alexcrichton.com/libc/x86_64-pc-windows-msvc" + html_root_url = "https://doc.rust-lang.org/libc/x86_64-pc-windows-msvc" ))] #![cfg_attr(all(windows, target_arch = "x86", target_env = "msvc"), doc( - html_root_url = "http://alexcrichton.com/libc/i686-pc-windows-msvc" + html_root_url = "https://doc.rust-lang.org/libc/i686-pc-windows-msvc" ))] #![cfg_attr(all(target_os = "android"), doc( - html_root_url = "http://alexcrichton.com/libc/arm-linux-androideabi" + html_root_url = "https://doc.rust-lang.org/libc/arm-linux-androideabi" ))] #[macro_use] mod macros; |