diff --git a/dan_layer/template_lib/src/models/bucket.rs b/dan_layer/template_lib/src/models/bucket.rs index 7ae23a42d..d2aff84b3 100644 --- a/dan_layer/template_lib/src/models/bucket.rs +++ b/dan_layer/template_lib/src/models/bucket.rs @@ -189,7 +189,7 @@ impl Bucket { .expect("get_non_fungible_ids returned invalid non fungible ids") } - /// Returns the all the non-fungibles in this bucket + /// Returns all the non-fungibles in this bucket pub fn get_non_fungibles(&self) -> Vec { let resp: InvokeResult = call_engine(EngineOp::BucketInvoke, &BucketInvokeArg { bucket_ref: BucketRef::Ref(self.id), diff --git a/dan_layer/template_lib/src/models/vault.rs b/dan_layer/template_lib/src/models/vault.rs index bbc72b218..2c6a61c6f 100644 --- a/dan_layer/template_lib/src/models/vault.rs +++ b/dan_layer/template_lib/src/models/vault.rs @@ -273,7 +273,7 @@ impl Vault { .expect("get_non_fungible_ids returned invalid non fungible ids") } - /// Returns the all the non-fungibles in this vault + /// Returns all the non-fungibles in this vault pub fn get_non_fungibles(&self) -> Vec { let resp: InvokeResult = call_engine(EngineOp::VaultInvoke, &VaultInvokeArg { vault_ref: self.vault_ref(),