Skip to content

Commit 79ab549

Browse files
author
Thomas Bächler
committed
Fix the doc-tests.
1 parent ecd10b5 commit 79ab549

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
//! # Example
2525
//!
2626
//! ```
27-
//! # use atomic_enum_derive::atomic_enum;
27+
//! # use atomic_enum::atomic_enum;
2828
//! # use std::sync::atomic::Ordering;
2929
//! #[atomic_enum]
3030
//! #[derive(PartialEq)]
@@ -349,7 +349,7 @@ fn debug_impl(atomic_ident: &Ident) -> TokenStream2 {
349349
/// `Atomic`.
350350
///
351351
/// ```
352-
/// # use atomic_enum_derive::atomic_enum;
352+
/// # use atomic_enum::atomic_enum;
353353
/// #[atomic_enum]
354354
/// enum State {
355355
/// On,
@@ -363,7 +363,7 @@ fn debug_impl(atomic_ident: &Ident) -> TokenStream2 {
363363
/// as an argument to the attribute.
364364
///
365365
/// ```
366-
/// # use atomic_enum_derive::atomic_enum;
366+
/// # use atomic_enum::atomic_enum;
367367
/// #[atomic_enum(StateAtomic)]
368368
/// enum State {
369369
/// On,

0 commit comments

Comments
 (0)