Skip to content

Commit

Permalink
doc: improve comment
Browse files Browse the repository at this point in the history
Co-authored-by: Philippe Laferrière <[email protected]>
  • Loading branch information
bobbinth and plafer authored Aug 15, 2024
1 parent 1f5f59b commit 85253d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions processor/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -400,8 +400,8 @@ where
let callee_hash = self.stack.get_word(0);
self.start_dyn_node(callee_hash)?;

// if the callee is not in the current MAST forest, try to find a MAST forest for it in the
// host; if not found in the host, return an error
// if the callee is not in the program's MAST forest, try to find a MAST forest for it in the
// host (corresponding to an external library loaded in the host); if none are found, return an error.
match program.find_procedure_root(callee_hash.into()) {
Some(callee_id) => self.execute_mast_node(callee_id, program)?,
None => {
Expand Down

0 comments on commit 85253d9

Please sign in to comment.