aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2015-05-13 16:31:27 -0700
committerSteven Fackler <[email protected]>2015-05-13 16:31:27 -0700
commitd723481f7742cfbbe4f691053932198d9f011639 (patch)
tree1c863edd3f10ba5c4e82e60466f0119cfb42b225
parentMerge pull request #210 from manuels/pending (diff)
downloadrust-openssl-d723481f7742cfbbe4f691053932198d9f011639.tar.xz
rust-openssl-d723481f7742cfbbe4f691053932198d9f011639.zip
Fix doc root
-rw-r--r--openssl-sys/src/lib.rs2
-rw-r--r--openssl/src/lib.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/openssl-sys/src/lib.rs b/openssl-sys/src/lib.rs
index b3b9463d..85032549 100644
--- a/openssl-sys/src/lib.rs
+++ b/openssl-sys/src/lib.rs
@@ -1,6 +1,6 @@
#![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)]
#![allow(dead_code)]
-#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/openssl-sys")]
+#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc")]
extern crate libc;
diff --git a/openssl/src/lib.rs b/openssl/src/lib.rs
index 1d131010..b283a479 100644
--- a/openssl/src/lib.rs
+++ b/openssl/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/openssl")]
+#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc")]
#[macro_use]
extern crate bitflags;