about summary refs log tree commit diff stats
path: root/cpp/030container
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-17 23:24:52 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-17 23:24:52 -0700
commit7284d503f67572dab678f68e5635c471a9d53480 (patch)
tree292b611d694da66c1a881ed11662cf9b0ee64610 /cpp/030container
parentb3cdcdd44f6b8db053e4814351fbf04fefb7d7cf (diff)
downloadmu-7284d503f67572dab678f68e5635c471a9d53480.tar.gz
1094 - demarcate sections in layers
We have tangled vs regular comments, but they highlight the same. So
we're still at 3 colors for comments. Anything more starts to seem
gratuitous.
Diffstat (limited to 'cpp/030container')
-rw-r--r--cpp/030container4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/030container b/cpp/030container
index fa936d25..b84314b6 100644
--- a/cpp/030container
+++ b/cpp/030container
@@ -59,7 +59,7 @@ if (t.kind == container) {
   return result;
 }
 
-//: To access elements of a container, use 'get'
+//:: To access elements of a container, use 'get'
 :(scenario "get")
 recipe main [
   12:integer <- copy 34:literal
@@ -128,7 +128,7 @@ recipe main [
 +run: product 0 is 36
 +mem: storing 36 in location 15
 
-//: To write to elements of containers, you need their address.
+//:: To write to elements of containers, you need their address.
 
 :(scenario "get_address")
 recipe main [