about summary refs log tree commit diff stats
path: root/cpp/013literal_string
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/013literal_string')
-rw-r--r--cpp/013literal_string6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/013literal_string b/cpp/013literal_string
index 008f95ad..be6f771e 100644
--- a/cpp/013literal_string
+++ b/cpp/013literal_string
@@ -6,13 +6,13 @@
 //: parsing.
 
 :(scenarios load)
-:(scenario "string_literal")
+:(scenario string_literal)
 recipe main [
   1:address:array:character <- new [abc def]
 ]
 +parse:   ingredient: {name: "abc def", value: 0, type: 0, properties: ["abc def": "literal-string"]}
 
-:(scenario "string_literal_with_colons")
+:(scenario string_literal_with_colons)
 recipe main [
   1:address:array:character <- new [abc:def/ghi]
 ]
@@ -56,7 +56,7 @@ string slurp_quoted(istream& in) {
     return;
   }
 
-:(scenario "string_literal_nested")
+:(scenario string_literal_nested)
 recipe main [
   1:address:array:character <- new [abc [def]]
 ]