about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--018type_abbreviations.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/018type_abbreviations.cc b/018type_abbreviations.cc
index 3087c828..f7fd0592 100644
--- a/018type_abbreviations.cc
+++ b/018type_abbreviations.cc
@@ -142,11 +142,11 @@ def main [
 
 :(scenario abbreviations_for_address_and_array)
 def main [
-  f 1:&:number  # abbreviation for 'address:number'
-  f 2:@:number  # abbreviation for 'array:number'
-  f 3:&:@:number  # combining '&' and '@'
-  f 4:&:&:@:&:@:number  # ..any number of times
-  f {5: (array (& number) 3)}  # support for dilated reagents and more complex parse trees
+  f 1:&:num  # abbreviation for 'address:number'
+  f 2:@:num  # abbreviation for 'array:number'
+  f 3:&:@:num  # combining '&' and '@'
+  f 4:&:&:@:&:@:num  # ..any number of times
+  f {5: (array (& num) 3)}  # support for dilated reagents and more complex parse trees
 ]
 def f [
 ]