Skip to content

Commit

Permalink
Update examples
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Sep 14, 2014
1 parent 46aa49f commit 85a3b28
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions phf/src/lib.rs
Expand Up @@ -24,7 +24,7 @@ mod shared;
/// ```rust
/// # #![feature(phase)]
/// extern crate phf;
/// #[phase(syntax)]
/// #[phase(plugin)]
/// extern crate phf_mac;
///
/// use phf::PhfMap;
Expand Down Expand Up @@ -231,7 +231,7 @@ impl<'a, K, V> ExactSize<&'a V> for PhfMapValues<'a, K, V> {}
/// ```rust
/// # #![feature(phase)]
/// extern crate phf;
/// #[phase(syntax)]
/// #[phase(plugin)]
/// extern crate phf_mac;
///
/// use phf::PhfSet;
Expand Down Expand Up @@ -363,7 +363,7 @@ impl<'a, T> ExactSize<&'a T> for PhfSetValues<'a, T> {}
/// ```rust
/// # #![feature(phase)]
/// extern crate phf;
/// #[phase(syntax)]
/// #[phase(plugin)]
/// extern crate phf_mac;
///
/// use phf::PhfOrderedMap;
Expand Down Expand Up @@ -618,7 +618,7 @@ impl<'a, K, V> ExactSize<&'a V> for PhfOrderedMapValues<'a, K, V> {}
/// ```rust
/// # #![feature(phase)]
/// extern crate phf;
/// #[phase(syntax)]
/// #[phase(plugin)]
/// extern crate phf_mac;
///
/// use phf::PhfOrderedSet;
Expand Down

0 comments on commit 85a3b28

Please sign in to comment.