diff options
Diffstat (limited to 'cpp/literate/010vm')
-rw-r--r-- | cpp/literate/010vm | 2 |
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") |