diff options
Diffstat (limited to 'cpp/021call')
-rw-r--r-- | cpp/021call | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/021call b/cpp/021call index a2379219..3683db12 100644 --- a/cpp/021call +++ b/cpp/021call @@ -15,7 +15,7 @@ recipe f [ struct call { recipe_number running_recipe; size_t pc; - // End Call Fields + // End call Fields call(recipe_number r) :running_recipe(r), pc(0) {} }; typedef stack<call> call_stack; @@ -23,7 +23,7 @@ typedef stack<call> call_stack; :(replace{} "struct routine") struct routine { call_stack calls; - // End Routine Fields + // End routine Fields routine(recipe_number r); }; :(code) |