Actually fix crate name, wrong in #2 (#9)

This commit is contained in:
Dan Shields
2023-04-12 14:19:27 -06:00
committed by GitHub
parent 7dd17bec70
commit 20155bf082
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ macro_rules! map {
/// generate this implementation for us, as such:
///
/// ```
/// use pba_qualifier::impl_get;
/// use pba_qualifier_exam::impl_get;
/// impl_get! {
/// // implements `Get<u32>` for `struct Six`
/// Six: u32 = 6;
+3 -3
View File
@@ -23,7 +23,7 @@ use crate::e_common_traits::Employee;
/// ## Example
///
/// ```
/// # use pba_qualifier::m_builder::EmployeeBuilder;
/// # use pba_qualifier_exam::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_qualifier::m_builder::TypedEmployeeBuilder;
/// use pba_qualifier_exam::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_qualifier::m_builder::TypedEmployeeBuilder;
/// use pba_qualifier_exam::m_builder::TypedEmployeeBuilder;
///
/// # fn main() {
/// let success = TypedEmployeeBuilder::default().uid(42).build();