Skip to content

Commit 7c3ddff

Browse files
committed
Merge #136: Reduce line count by merging re-exports
74c876d Reduce line count by merging re-exports (Tobin C. Harding) Pull request description: 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. ACKs for top commit: apoelstra: ACK 74c876d Tree-SHA512: 5bfc02fa8d3a858deaf5a75c60ae5a306866e3452f7cfbd98361e65e88568bb4be5b4211deed1d8b30ee1c5d4b9882310d7c82d3cf4e1c43c3621c52e1ec2ca0
2 parents f3499ee + 74c876d commit 7c3ddff

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)