about summary refs log tree commit diff stats
path: root/043space.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-08-16 13:40:46 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-08-16 13:56:19 -0700
commit6a218cff3ae7e7d5a77da493d1ba42c6be95a2fc (patch)
tree414bd00f5cf479c93bb622793be28ec5dbda242e /043space.cc
parentc057f5c190bc83abc6ef636989c622ba4def8ec3 (diff)
downloadmu-6a218cff3ae7e7d5a77da493d1ba42c6be95a2fc.tar.gz
3196
Diffstat (limited to '043space.cc')
-rw-r--r--043space.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/043space.cc b/043space.cc
index a3db4c31..275640cd 100644
--- a/043space.cc
+++ b/043space.cc
@@ -269,7 +269,7 @@ bool should_update_refcounts_in_write_memory(int product_index) {
   if (!contains_key(Recipe, inst.operation)) return true;
   const recipe& caller = get(Recipe, inst.operation);
   if (caller.steps.empty()) return true;
-  // if the recipe deosn't begin with 'local-scope', always update refcounts
+  // if the recipe doesn't begin with 'local-scope', always update refcounts
   return caller.steps.at(0).old_name != "local-scope";
 }