about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-10-10 15:08:38 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-10-10 15:08:38 -0700
commitbdd1677819b967ced9f4e8231da5027d9c6f68e4 (patch)
treeea8c206818c358183f5d83114aa2a25944950c98
parentb4d5b58959f9d416976910609f46733ee91bacb0 (diff)
downloadmu-bdd1677819b967ced9f4e8231da5027d9c6f68e4.tar.gz
3492
-rw-r--r--Readme.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/Readme.md b/Readme.md
index 8cda946f..2af72102 100644
--- a/Readme.md
+++ b/Readme.md
@@ -229,12 +229,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' width='75%' src='html/immutable-error.png'>
+<img alt='immutable ingredient triggering an error' 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' width='75%' src='html/mutable.png'>
+<img alt='mutable ingredient' 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