about summary refs log tree commit diff stats
path: root/054static_dispatch.cc
diff options
context:
space:
mode:
Diffstat (limited to '054static_dispatch.cc')
-rw-r--r--054static_dispatch.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/054static_dispatch.cc b/054static_dispatch.cc
index 69dc30bd..8a026d90 100644
--- a/054static_dispatch.cc
+++ b/054static_dispatch.cc
@@ -342,10 +342,10 @@ const recipe& best_variant(const instruction& inst, vector<recipe_ordinal>& cand
   int min_index = 0;
   for (int i = 0;  i < SIZE(candidates);  ++i) {
     const recipe& candidate = get(Recipe, candidates.at(i));
-    // prefer functions without extra or missing ingredients or products
+    // prefer variants without extra or missing ingredients or products
     int score = abs(SIZE(candidate.products)-SIZE(inst.products))
                           + abs(SIZE(candidate.ingredients)-SIZE(inst.ingredients));
-    // prefer functions with non-address ingredients or products
+    // prefer variants with non-address ingredients or products
     for (int j = 0;  j < SIZE(candidate.ingredients);  ++j) {
       if (is_mu_address(candidate.ingredients.at(j)))
         ++score;