diff options
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -12,7 +12,6 @@ #![cfg_attr(test, deny(warnings))] #![allow(unused_parens)] -pub use markup5ever; pub use tendril; #[macro_use] @@ -20,17 +19,6 @@ mod macros; /// Create a [`SmallCharSet`], with each space-separated number stored in the set. /// -/// # Examples -/// -/// ``` -/// # #[macro_use] extern crate markup5ever; -/// # fn main() { -/// let set = small_char_set!(12 54 42); -/// assert_eq!(set.bits, -/// 0b00000000_01000000_00000100_00000000_00000000_00000000_00010000_00000000); -/// # } -/// ``` -/// /// [`SmallCharSet`]: struct.SmallCharSet.html #[macro_export] macro_rules! small_char_set ( ($($e:expr)+) => ( |