From 19ffde4ab45988d8e1171f9e3f5faad0956a7a3f Mon Sep 17 00:00:00 2001 From: Daniel Bigos Date: Thu, 4 Apr 2024 16:57:05 +0200 Subject: [PATCH] ref(erc20): use nightly formatter --- contracts/src/erc20/mod.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/contracts/src/erc20/mod.rs b/contracts/src/erc20/mod.rs index 4c76c081..5fdc3597 100644 --- a/contracts/src/erc20/mod.rs +++ b/contracts/src/erc20/mod.rs @@ -297,9 +297,11 @@ impl ERC20 { } /// Transfers a `value` amount of tokens from `from` to `to`, - /// or alternatively mints (or burns) if `from` (or `to`) is the zero address. + /// or alternatively mints (or burns) + /// if `from` (or `to`) is the zero address. /// - /// All customizations to transfers, mints, and burns should be done by using this function. + /// All customizations to transfers, mints, and burns + /// should be done by using this function. /// /// # Arguments ///