From 9dcbec398c5aedf27757365cc1f4c7c36e138539 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Fri, 20 May 2016 22:09:06 -0700 Subject: 2990 Standardize quotes around reagents in error messages. I'm still sure there's issues. For example, the messages when type-checking 'copy'. I'm not putting quotes around them because in layer 60 I end up creating dilated reagents, and then it's a bit much to have quotes and (two kinds of) brackets. But I'm sure I'm doing that somewhere.. --- 031merge.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '031merge.cc') diff --git a/031merge.cc b/031merge.cc index dea86982..4acc6ec8 100644 --- a/031merge.cc +++ b/031merge.cc @@ -184,8 +184,8 @@ void check_merge_call(const vector& ingredients, const reagent& product default: { if (!types_coercible(container, ingredients.at(ingredient_index))) { raise << maybe(caller.name) << "incorrect type of ingredient " << ingredient_index << " in '" << to_original_string(inst) << "'\n" << end(); - raise << " (expected " << debug_string(container) << ")\n" << end(); - raise << " (got " << debug_string(ingredients.at(ingredient_index)) << ")\n" << end(); + raise << " (expected '" << debug_string(container) << "')\n" << end(); + raise << " (got '" << debug_string(ingredients.at(ingredient_index)) << "')\n" << end(); return; } ++ingredient_index; -- cgit 1.4.1-2-gfad0