about summary refs log tree commit diff stats
path: root/Readme.md
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-07-29 15:55:05 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-07-29 15:55:05 -0700
commit9570363aec35e187e2395b1760a4b94e71580ac9 (patch)
tree5b0d9cf65b5d5a403ab29e88535ba158efb276fe /Readme.md
parentb318b7fb127a2bdf3e394b315a45d339dc738447 (diff)
downloadmu-9570363aec35e187e2395b1760a4b94e71580ac9.tar.gz
1885
Diffstat (limited to 'Readme.md')
-rw-r--r--Readme.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/Readme.md b/Readme.md
index febce9ec..11087bb9 100644
--- a/Readme.md
+++ b/Readme.md
@@ -96,8 +96,9 @@ you can perform integer division as follows:
   quotient:number, remainder:number <- divide-with-remainder 11, 3
 ```
 
-Each reagent provides its name as well as its type separated by a colon. Types
-can be multiple words, like:
+Each reagent can provide a name as well as its type separated by a colon. You
+only have to specify the type the first time you mention a name, but you can
+be more explicit if you choose. Types can be multiple words, like:
 
 ```nim
   x:array:number:3  # x is an array of 3 numbers