File tree Expand file tree Collapse file tree
crates/driver/src/domain/competition Expand file tree Collapse file tree Original file line number Diff line number Diff 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(
You can’t perform that action at this time.
0 commit comments