about summary refs log tree commit diff stats
path: root/cpp/literate/010vm
diff options
context:
space:
mode:
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")