about summary refs log tree commit diff stats
path: root/cpp/literate/010vm
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-02-18 14:46:30 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-02-18 14:46:30 -0800
commit9fc64bbc95bb4e55f28f5262d0f5c660177f0a19 (patch)
tree966c29138ee7297b305995168dc3293d11e1cfd4 /cpp/literate/010vm
parent96ac511e9e789dfe0dd16e5216b7a957338fe3d3 (diff)
downloadmu-9fc64bbc95bb4e55f28f5262d0f5c660177f0a19.tar.gz
781 - first instruction to run in literate C++ version
Diffstat (limited to 'cpp/literate/010vm')
-rw-r--r--cpp/literate/010vm2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/literate/010vm b/cpp/literate/010vm
index 4ae5c16a..3b8a7c96 100644
--- a/cpp/literate/010vm
+++ b/cpp/literate/010vm
@@ -11,7 +11,7 @@ int Next_recipe_number = 1;
 // Recipes are lists of instructions. To run a recipe, the computer runs its
 // instructions.
 struct recipe {
-  vector<instruction> step;
+  vector<instruction> steps;
 };
 
 :(before "struct recipe")