float_ord: Fix test

This commit is contained in:
Dorota Czaplejewicz
2019-09-10 09:21:55 +00:00
parent 04a47ad0af
commit e9c236a682
2 changed files with 2 additions and 1 deletions

View File

@ -67,6 +67,7 @@ float_ord_impl!(f64, u64, 64);
/// # Example /// # Example
/// ///
/// ``` /// ```
/// use rs::float_ord;
/// let mut v = [-5.0, 4.0, 1.0, -3.0, 2.0]; /// let mut v = [-5.0, 4.0, 1.0, -3.0, 2.0];
/// ///
/// float_ord::sort(&mut v); /// float_ord::sort(&mut v);

View File

@ -1,7 +1,7 @@
#[macro_use] #[macro_use]
extern crate bitflags; extern crate bitflags;
mod float_ord; pub mod float_ord;
mod imservice; mod imservice;
mod keyboard; mod keyboard;
mod layout; mod layout;