about summary refs log tree commit diff stats
path: root/011load.cc
diff options
context:
space:
mode:
Diffstat (limited to '011load.cc')
-rw-r--r--011load.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/011load.cc b/011load.cc
index dd1f9369..4783c324 100644
--- a/011load.cc
+++ b/011load.cc
@@ -44,7 +44,7 @@ long long int slurp_recipe(istream& in) {
   recipe result;
   result.name = next_word(in);
   skip_whitespace_but_not_newline(in);
-  // End recipe Refinements
+  // End Recipe Refinements
   if (result.name.empty())
     raise_error << "empty result.name\n" << end();
   trace(9991, "parse") << "--- defining " << result.name << end();
@@ -58,7 +58,7 @@ long long int slurp_recipe(istream& in) {
     Recipe.erase(get(Recipe_ordinal, result.name));
   }
   slurp_body(in, result);
-  // End recipe Body(result)
+  // End Recipe Body(result)
   put(Recipe, get(Recipe_ordinal, result.name), result);
   // track added recipes because we may need to undo them in tests; see below
   Recently_added_recipes.push_back(get(Recipe_ordinal, result.name));