about summary refs log tree commit diff stats
path: root/cpp/010vm
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-03-30 21:31:58 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-03-30 21:31:58 -0700
commit088665eff883b5bc28022800aed27f6af468a4ba (patch)
tree073f6c7b0d21428ee2d1246da7fc57a3dca79895 /cpp/010vm
parent66b97b4d923274e1b6d2fd97df16cb73d820169b (diff)
downloadmu-088665eff883b5bc28022800aed27f6af468a4ba.tar.gz
997
Diffstat (limited to 'cpp/010vm')
-rw-r--r--cpp/010vm4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/010vm b/cpp/010vm
index 966b095e..5c8e120c 100644
--- a/cpp/010vm
+++ b/cpp/010vm
@@ -184,9 +184,9 @@ void setup_recipes() {
     if (!properties.empty()) {
       out << ", properties: [";
       for (size_t i = 0; i < properties.size(); ++i) {
-        out << properties[i].first << ": ";
+        out << "\"" << properties[i].first << "\": ";
         for (size_t j = 0; j < properties[i].second.size(); ++j) {
-          out << properties[i].second[j];
+          out << "\"" << properties[i].second[j] << "\"";
           if (j < properties[i].second.size()-1) out << ":";
         }
         if (i < properties.size()-1) out << ", ";