From cd222a643ac18eb237caa1d76de6e51fe04fdc83 Mon Sep 17 00:00:00 2001 From: timofey Date: Sun, 20 Aug 2023 23:22:32 +0000 Subject: [PATCH] remove `-rs`/`_rs` --- Cargo.toml | 2 +- src/flow/comparator.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f166452..8804745 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "radn-rs" +name = "radn" version = "0.1.0" edition = "2021" rust-version = "1.65" diff --git a/src/flow/comparator.rs b/src/flow/comparator.rs index 902cbf2..942d716 100644 --- a/src/flow/comparator.rs +++ b/src/flow/comparator.rs @@ -10,7 +10,7 @@ pub enum Comparison { /// Returns [`Comparison`] saying which value is smaller. /// /// ```rust -/// # use radn_rs::flow::comparator::*; +/// # use radn::flow::comparator::*; /// assert_eq!(DefaultComparator.compare(&1, &3), Comparison::L); /// assert_eq!(DefaultComparator.compare(&2, &2), Comparison::E); /// assert_eq!(DefaultComparator.compare(&3, &1), Comparison::R);