about summary refs log tree commit diff stats
path: root/cpp/014types
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/014types')
-rw-r--r--cpp/014types4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/014types b/cpp/014types
index 226be5ee..f12aa6f8 100644
--- a/cpp/014types
+++ b/cpp/014types
@@ -51,7 +51,7 @@ void insert_container(const string& command, kind_of_type kind, istream& in) {
   t.size = t.elements.size();
 }
 
-//: Similarly for exclusive_container.
+//:: Similarly for exclusive_container.
 
 :(scenario "exclusive_container")
 exclusive-container foo [
@@ -69,7 +69,7 @@ else if (command == "exclusive-container") {
   insert_container(command, exclusive_container, in);
 }
 
-//: ensure types created in one scenario don't leak outside it.
+//:: ensure types created in one scenario don't leak outside it.
 :(before "End Globals")
 vector<type_number> recently_added_types;
 :(before "End Setup")