Skip to content

Commit 74c876d

Browse files
committed
Reduce line count by merging re-exports
Reduce line count and attribute usage by merging the `hrp` re-exports into a single statement. Refactor only, no logic changes. Also, this patch does not introduce any changes to the rendered HTML.
1 parent f3499ee commit 74c876d

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/hrp.rs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
11
// SPDX-License-Identifier: MIT
22

33
#[doc(inline)]
4-
pub use crate::primitives::hrp::Hrp;
5-
#[doc(inline)]
6-
pub use crate::primitives::hrp::BC;
7-
#[doc(inline)]
8-
pub use crate::primitives::hrp::BCRT;
9-
#[doc(inline)]
10-
pub use crate::primitives::hrp::TB;
4+
pub use crate::primitives::hrp::{Hrp, BC, BCRT, TB};

0 commit comments

Comments
 (0)