From 7dd17bec706c3130be71d259235542bfaccc55fd Mon Sep 17 00:00:00 2001 From: Maxim <59533214+biryukovmaxim@users.noreply.github.com> Date: Sat, 8 Apr 2023 23:52:42 +0400 Subject: [PATCH] fix wrong crate name (#2) --- src/k_macros.rs | 2 +- src/m_builder.rs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/k_macros.rs b/src/k_macros.rs index b0daad2..6f4e297 100644 --- a/src/k_macros.rs +++ b/src/k_macros.rs @@ -25,7 +25,7 @@ macro_rules! map { /// generate this implementation for us, as such: /// /// ``` -/// use pba_entrance_exam::impl_get; +/// use pba_qualifier::impl_get; /// impl_get! { /// // implements `Get` for `struct Six` /// Six: u32 = 6; diff --git a/src/m_builder.rs b/src/m_builder.rs index 0479a41..7339f82 100644 --- a/src/m_builder.rs +++ b/src/m_builder.rs @@ -23,7 +23,7 @@ use crate::e_common_traits::Employee; /// ## Example /// /// ``` -/// # use pba_entrance_exam::m_builder::EmployeeBuilder; +/// # use pba_qualifier::m_builder::EmployeeBuilder; /// /// # fn main() { /// let success = EmployeeBuilder::default().name("John".to_string()).uid(42).build(); @@ -117,7 +117,7 @@ pub struct UnIdentified; /// ## Example /// /// ``` -/// use pba_entrance_exam::m_builder::TypedEmployeeBuilder; +/// use pba_qualifier::m_builder::TypedEmployeeBuilder; /// /// # fn main() { /// // This is not a result anymore, because we guarantee at compile time that it has name and uid. @@ -132,7 +132,7 @@ pub struct UnIdentified; /// This code will simply fail to compile: /// /// ```compile_fail -/// use pba_entrance_exam::m_builder::TypedEmployeeBuilder; +/// use pba_qualifier::m_builder::TypedEmployeeBuilder; /// /// # fn main() { /// let success = TypedEmployeeBuilder::default().uid(42).build();