about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2018-04-19 09:16:35 -0700
committerKartik K. Agaram <vc@akkartik.com>2018-04-19 09:16:35 -0700
commit8878326574db7c121ce1bc06b3014eb1986946cc (patch)
tree27caf3459d71e5d3b909076efd661ccea117be9f
parent34514ae8a6635915143e0a7fd1e523eb51b4a91d (diff)
downloadmu-8878326574db7c121ce1bc06b3014eb1986946cc.tar.gz
4234
-rw-r--r--Readme.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/Readme.md b/Readme.md
index 1197feb5..4e2b98c4 100644
--- a/Readme.md
+++ b/Readme.md
@@ -118,7 +118,7 @@ operates on some *ingredients* and returns some *products*.
   [products] <- instruction [ingredients]
   ```
 
-Result and ingredient *reagents* cannot contain instructions or infix
+Product and ingredient *reagents* cannot contain instructions or infix
 expressions. On the other hand, you can have any number of them. In
 particular, you can have any number of products. For example, you can perform
 integer division as follows:
@@ -258,8 +258,8 @@ option of imperatively modifying variables willy-nilly.
 
 ---
 
-You can append arbitrary properties to reagents besides types and spaces. Just
-separate them with slashes.
+You can append arbitrary properties to reagents besides types. Just separate
+them with slashes.
 
   ```nim
   x:array:number:3/uninitialized
@@ -280,7 +280,7 @@ within a row separated by colons. So the last example above would become
 something like this:
 
   ```
-  z           : integer  /
+  z           : number   /
   assign-once : true     /
   assigned    : false
   ```