about summary refs log tree commit diff stats
path: root/Readme.md
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-09-11 01:30:34 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-09-11 01:30:34 -0700
commitfa20bd3143ffb637e438b44dcb10b56d9abf9888 (patch)
tree06f2d2e66a4ef0fb853f0596525b23a336133c3c /Readme.md
parent271f101f85a9b482f6cdaac677bd391159d85cee (diff)
downloadmu-fa20bd3143ffb637e438b44dcb10b56d9abf9888.tar.gz
3322
Diffstat (limited to 'Readme.md')
-rw-r--r--Readme.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/Readme.md b/Readme.md
index a8dc9028..d8e7b688 100644
--- a/Readme.md
+++ b/Readme.md
@@ -218,12 +218,12 @@ Mu assumes that all ingredients passed in to functions are immutable by
 default -- *unless* they are also products. So this program will throw an
 error:
 
-<img alt='immutable ingredient triggering an error' src='html/immutable-error.png'>
+<img alt='immutable ingredient triggering an error' width='75%' src='html/immutable-error.png'>
 
 To modify `foo`'s ingredient, you have to add it to the list of products
 returned:
 
-<img alt='mutable ingredient' src='html/mutable.png'>
+<img alt='mutable ingredient' width='75%' src='html/mutable.png'>
 
 The names of the variables are important here: a function that takes an
 (immutable) address and returns a different one is different from a function