about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--000organization.cc4
-rw-r--r--030container.cc2
-rw-r--r--033exclusive_container.cc6
3 files changed, 6 insertions, 6 deletions
diff --git a/000organization.cc b/000organization.cc
index 0f2518f5..dc37dbb3 100644
--- a/000organization.cc
+++ b/000organization.cc
@@ -1,7 +1,7 @@
 //: You guessed right: the '000' prefix means you should start reading here.
 //:
-//: This project is setup to load all files with a numeric prefix. Just create
-//: a new file and start hacking.
+//: This project is set up to load all files with a numeric prefix. Just
+//: create a new file and start hacking.
 //:
 //: The first few files (00*) are independent of what this program does, an
 //: experimental skeleton that will hopefully make it both easier for others to
diff --git a/030container.cc b/030container.cc
index 8f8abbf6..d340e131 100644
--- a/030container.cc
+++ b/030container.cc
@@ -12,7 +12,7 @@ get(Type, point).elements.push_back(reagent("y:number"));
 //: Containers can be copied around with a single instruction just like
 //: numbers, no matter how large they are.
 
-//: Tests in this layer often explicitly setup memory before reading it as a
+//: Tests in this layer often explicitly set up memory before reading it as a
 //: container. Don't do this in general. I'm tagging exceptions with /raw to
 //: avoid errors.
 :(scenario copy_multiple_locations)
diff --git a/033exclusive_container.cc b/033exclusive_container.cc
index b5ba93c3..a24df65d 100644
--- a/033exclusive_container.cc
+++ b/033exclusive_container.cc
@@ -15,9 +15,9 @@ get(Type, tmp).elements.push_back(reagent("i:number"));
 get(Type, tmp).elements.push_back(reagent("p:point"));
 }
 
-//: Tests in this layer often explicitly setup memory before reading it as an
-//: array. Don't do this in general. I'm tagging exceptions with /raw to
-//: avoid errors.
+//: Tests in this layer often explicitly set up memory before reading it as an
+//: array. Don't do this in general. I'm tagging exceptions with /raw to avoid
+//: errors.
 :(scenario copy_exclusive_container)
 # Copying exclusive containers copies all their contents and an extra location for the tag.
 def main [