Skip to content

Commit f5cb342

Browse files
committed
fmt
1 parent d8bed3a commit f5cb342

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

crates/driver/src/domain/competition/auction.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,7 @@ impl Price {
180180
/// Converting 1 ETH expressed in `eth::TokenAmount` into `eth::Ether`
181181
///
182182
/// ```
183-
/// use driver::domain::competition::auction::Price;
184-
/// use shared::domain::eth;
183+
/// use {driver::domain::competition::auction::Price, shared::domain::eth};
185184
///
186185
/// let amount = eth::TokenAmount::from(eth::U256::from(10).pow(eth::U256::from(18)));
187186
/// let price = Price::try_new(eth::Ether::from(
@@ -205,8 +204,7 @@ impl Price {
205204
///
206205
/// # Examples
207206
/// ```
208-
/// use driver::domain::competition::auction::Price;
209-
/// use shared::domain::eth;
207+
/// use {driver::domain::competition::auction::Price, shared::domain::eth};
210208
///
211209
/// let amount = eth::Ether::from(eth::U256::from(10).pow(eth::U256::from(18)));
212210
/// let price = Price::try_new(eth::Ether::from(

0 commit comments

Comments
 (0)