about summary refs log tree commit diff stats
path: root/058to_text.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-11-11 23:30:16 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-11-11 23:30:37 -0800
commite41e8e09e6bdb95dc24b910801f795123fb272d6 (patch)
tree034f0c6c6ef068764396c86276ff463ba25ba71a /058to_text.cc
parentaa3d29a5666afecd6bce1821ff72ccc5600b431f (diff)
downloadmu-e41e8e09e6bdb95dc24b910801f795123fb272d6.tar.gz
3669
Diffstat (limited to '058to_text.cc')
-rw-r--r--058to_text.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/058to_text.cc b/058to_text.cc
index becc3842..e845218c 100644
--- a/058to_text.cc
+++ b/058to_text.cc
@@ -18,6 +18,6 @@ case TO_TEXT: {
 :(before "End Primitive Recipe Implementations")
 case TO_TEXT: {
   products.resize(1);
-  products.at(0).push_back(new_mu_text(print_mu(current_instruction().ingredients.at(0), ingredients.at(0))));
+  products.at(0).push_back(new_mu_text(inspect(current_instruction().ingredients.at(0), ingredients.at(0))));
   break;
 }