Skip to content

Commit

Permalink
comment fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mrnaveira committed Jan 15, 2024
1 parent 8265b4d commit 9bb8bdf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dan_layer/template_lib/src/models/bucket.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<NonFungible> {
let resp: InvokeResult = call_engine(EngineOp::BucketInvoke, &BucketInvokeArg {
bucket_ref: BucketRef::Ref(self.id),
Expand Down
2 changes: 1 addition & 1 deletion dan_layer/template_lib/src/models/vault.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<NonFungible> {
let resp: InvokeResult = call_engine(EngineOp::VaultInvoke, &VaultInvokeArg {
vault_ref: self.vault_ref(),
Expand Down

0 comments on commit 9bb8bdf

Please sign in to comment.