diff --git a/README.md b/README.md index 0984c67c..8b506b64 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ It currently uses the [CHD algorithm](http://cmph.sourceforge.net/papers/esa09.pdf) and can generate a 100,000 entry map in roughly .4 seconds. -Documentation is available at http://www.rust-ci.org/sfackler/rust-phf/doc/phf/. +Documentation is available at https://sfackler.github.io/doc/phf Example ======= diff --git a/phf/src/lib.rs b/phf/src/lib.rs index e970fe8c..5d71b4d1 100644 --- a/phf/src/lib.rs +++ b/phf/src/lib.rs @@ -2,7 +2,7 @@ //! //! Keys can be string literals, byte string literals, byte literals, char //! literals, or any of the fixed-size integral types. -#![doc(html_root_url="http://www.rust-ci.org/sfackler")] +#![doc(html_root_url="https://sfackler.github.io/doc")] #![warn(missing_doc)] #![feature(macro_rules, tuple_indexing)] diff --git a/phf_mac/src/lib.rs b/phf_mac/src/lib.rs index 7bcc4c11..fe223816 100644 --- a/phf_mac/src/lib.rs +++ b/phf_mac/src/lib.rs @@ -1,7 +1,7 @@ //! Compiler plugin for Rust-PHF //! //! See the documentation for the `phf` crate for more details. -#![doc(html_root_url="http://sfackler.github.io/rust-phf/doc")] +#![doc(html_root_url="http://sfackler.github.io/doc")] #![feature(plugin_registrar, quote, default_type_params, macro_rules)] #![feature(slicing_syntax)] #![allow(unknown_features)]