diff --git a/packages/fuels-code-gen/src/program_bindings/abigen.rs b/packages/fuels-code-gen/src/program_bindings/abigen.rs index 6d3269749..925f9c4ab 100644 --- a/packages/fuels-code-gen/src/program_bindings/abigen.rs +++ b/packages/fuels-code-gen/src/program_bindings/abigen.rs @@ -31,7 +31,7 @@ impl Abigen { /// # Arguments /// /// * `targets`: `AbigenTargets` detailing which ABI to generate bindings - /// for, and of what nature (Contract, Script or Predicate). + /// for, and of what nature (Contract, Script or Predicate). /// * `no_std`: don't use the Rust std library. pub fn generate(targets: Vec, no_std: bool) -> Result { let generated_code = Self::generate_code(no_std, targets)?; @@ -151,7 +151,7 @@ impl Abigen { /// # Arguments /// /// * `all_custom_types`: types from all ABIs whose bindings are being - /// generated. + /// generated. fn filter_shared_types<'a>( all_custom_types: impl IntoIterator, ) -> HashSet { diff --git a/packages/fuels-programs/src/calls/call_handler.rs b/packages/fuels-programs/src/calls/call_handler.rs index 3842e1273..637f41fd0 100644 --- a/packages/fuels-programs/src/calls/call_handler.rs +++ b/packages/fuels-programs/src/calls/call_handler.rs @@ -294,6 +294,7 @@ where /// - `amount`: The amount of the asset being added. /// - `address`: The optional account address that the output amount will be sent to. /// If not provided, the asset will be sent to the users account address. + /// /// Note that this is a builder method, i.e. use it as a chain: /// /// ```ignore