From 201458e3bd2f1d79a0ea0b853552e9df267e92b1 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Mon, 26 Dec 2016 20:44:10 -0800 Subject: 3713 - cross-link calls with definitions in html --- html/058to_text.cc.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'html/058to_text.cc.html') diff --git a/html/058to_text.cc.html b/html/058to_text.cc.html index 9b58c70b..582af589 100644 --- a/html/058to_text.cc.html +++ b/html/058to_text.cc.html @@ -61,11 +61,11 @@ if ('onhashchange' in window) { 5 :(before "End Primitive Recipe Declarations") 6 TO_TEXT, 7 :(before "End Primitive Recipe Numbers") - 8 put(Recipe_ordinal, "to-text", TO_TEXT); + 8 put(Recipe_ordinal, "to-text", TO_TEXT); 9 :(before "End Primitive Recipe Checks") 10 case TO_TEXT: { -11 if (SIZE(inst.ingredients) != 1) { -12 raise << maybe(get(Recipe, r).name) << "'to-text' requires a single ingredient, but got '" << inst.original_string << "'\n" << end(); +11 if (SIZE(inst.ingredients) != 1) { +12 raise << maybe(get(Recipe, r).name) << "'to-text' requires a single ingredient, but got '" << inst.original_string << "'\n" << end(); 13 break; 14 } 15 // can handle any type @@ -74,7 +74,7 @@ if ('onhashchange' in window) { 18 :(before "End Primitive Recipe Implementations") 19 case TO_TEXT: { 20 products.resize(1); -21 products.at(0).push_back(new_mu_text(inspect(current_instruction().ingredients.at(0), ingredients.at(0)))); +21 products.at(0).push_back(new_mu_text(inspect(current_instruction().ingredients.at(0), ingredients.at(0)))); 22 break; 23 } -- cgit 1.4.1-2-gfad0 91'>91 92 93 94 95