From 49647cdd0c170be43956822cc31968ac96cd31b4 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sun, 26 Oct 2014 13:11:07 -0700 Subject: [PATCH] Update docs location --- README.md | 2 +- phf/src/lib.rs | 2 +- phf_mac/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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)]