about summary refs log tree commit diff stats
path: root/064random.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-07-13 20:50:25 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-07-13 20:50:25 -0700
commit8b9f1750c74c7d3cca99d6949a90cd61eb8e0218 (patch)
treeace2861be7f43de9ee2d1032ea03598748233cbf /064random.cc
parent8a23f9e055e2e2266d7ac5deb060f85ce2a2f53e (diff)
downloadmu-8b9f1750c74c7d3cca99d6949a90cd61eb8e0218.tar.gz
1777 - consistent terminology: 'product'
Diffstat (limited to '064random.cc')
-rw-r--r--064random.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/064random.cc b/064random.cc
index 05fa2863..6fadeb40 100644
--- a/064random.cc
+++ b/064random.cc
@@ -5,7 +5,7 @@ Recipe_ordinal["random"] = RANDOM;
 :(before "End Primitive Recipe Implementations")
 case RANDOM: {
   // todo: limited range of numbers, might be imperfectly random
-  // todo: thread state in extra ingredients and results
+  // todo: thread state in extra ingredients and products
   products.resize(1);
   products.at(0).push_back(rand());
   break;