about summary refs log tree commit diff stats
path: root/Readme.md
diff options
context:
space:
mode:
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