Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix markdown reported by clippy in docs #1500

Merged
merged 7 commits into from
Sep 30, 2024
Merged
4 changes: 2 additions & 2 deletions packages/fuels-code-gen/src/program_bindings/abigen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<AbigenTarget>, no_std: bool) -> Result<TokenStream> {
let generated_code = Self::generate_code(no_std, targets)?;
Expand Down Expand Up @@ -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<Item = &'a FullTypeDeclaration>,
) -> HashSet<FullTypeDeclaration> {
Expand Down
1 change: 1 addition & 0 deletions packages/fuels-programs/src/calls/call_handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading