Skip to content

Commit aabdb1d

Browse files
committed
update
1 parent bd14e13 commit aabdb1d

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
@@ -167,7 +167,7 @@ macro_rules! mac_impl {
167167
/// It can be used like this with [arrayvec::ArrayString] without allocations:
168168
/// ```
169169
/// use arrayvec::ArrayString;
170-
/// use advmac::{MacAddr6, MacAddrFormat, MAC_CANONICAL_SIZE6};
170+
/// use advmac_rs::{MacAddr6, MacAddrFormat, MAC_CANONICAL_SIZE6};
171171
///
172172
/// let mac = MacAddr6::parse_str("AA:BB:CC:DD:EE:FF").unwrap();
173173
///
@@ -414,7 +414,7 @@ impl MacAddr8 {
414414
///
415415
/// Example:
416416
/// ```
417-
/// use advmac::{mac6, MacAddr6};
417+
/// use advmac_rs::{mac6, MacAddr6};
418418
/// const MAC6: MacAddr6 = mac6!("11:22:33:44:55:66");
419419
/// # assert_eq!(MAC6.to_array(), [0x11, 0x22, 0x33, 0x44, 0x55, 0x66]);
420420
/// ```
@@ -432,7 +432,7 @@ macro_rules! mac6 {
432432
///
433433
/// Example:
434434
/// ```
435-
/// use advmac::{mac8, MacAddr8};
435+
/// use advmac_rs::{mac8, MacAddr8};
436436
/// const MAC8: MacAddr8 = mac8!("11:22:33:44:55:66:77:88");
437437
/// # assert_eq!(MAC8.to_array(), [0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88]);
438438
/// ```

0 commit comments

Comments
 (0)