about summary refs log tree commit diff stats
path: root/056recipe_header.cc
diff options
context:
space:
mode:
Diffstat (limited to '056recipe_header.cc')
-rw-r--r--056recipe_header.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/056recipe_header.cc b/056recipe_header.cc
index 4c44f1eb..ac1ca37e 100644
--- a/056recipe_header.cc
+++ b/056recipe_header.cc
@@ -165,10 +165,10 @@ recipe add2 x:number, x:number -> z:number [
 map<string, int> ingredient_index;
 
 :(after "Begin Instruction Modifying Transforms")
-Transform.push_back(check_and_update_header_reagents);  // idempotent
+Transform.push_back(check_header_ingredients);  // idempotent
 
 :(code)
-void check_and_update_header_reagents(const recipe_ordinal r) {
+void check_header_ingredients(const recipe_ordinal r) {
   recipe& caller_recipe = get(Recipe, r);
   if (caller_recipe.products.empty()) return;
   trace(9991, "transform") << "--- checking reply instructions against header for " << caller_recipe.name << end();
@@ -261,7 +261,7 @@ recipe add2 x:number, y:number -> z:number [
 ]
 +mem: storing 8 in location 1
 
-:(after "Transform.push_back(check_and_update_header_reagents)")
+:(after "Transform.push_back(check_header_ingredients)")
 Transform.push_back(fill_in_reply_ingredients);  // idempotent
 
 :(code)