From 646ee1a8370d96db7b06ec5a3e7320bd64fcfc19 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Thu, 29 Feb 2024 09:43:43 +1100 Subject: [PATCH] Put re-exports in alphabetic order We skip formatting of public re-exports; manually format the re-exports by putting the types in alphabetic order. --- bitcoin/src/address/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitcoin/src/address/mod.rs b/bitcoin/src/address/mod.rs index a3cae064..ff273761 100644 --- a/bitcoin/src/address/mod.rs +++ b/bitcoin/src/address/mod.rs @@ -54,7 +54,7 @@ use self::error::P2shError; #[rustfmt::skip] // Keep public re-exports separate. #[doc(inline)] pub use self::{ - error::{NetworkValidationError, ParseError, UnknownAddressTypeError, UnknownHrpError, FromScriptError, }, + error::{FromScriptError, NetworkValidationError, ParseError, UnknownAddressTypeError, UnknownHrpError}, }; /// The different types of addresses.