From e73160c78c0ea31c1afb10e18499a3efbe3e42f5 Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Sun, 26 Feb 2017 17:47:19 +0700 Subject: [PATCH] Don't actually show a function in the dimension example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8ad7865..a8b5733 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ mergeImages(['/body.png', '/eyes.png', '/mouth.png'], { width: 128, height: 128 }) - .then(b64 => document.querySelector('img').src = b64); + .then(b64 => ...); // data:image/png;base64,iVBORw0KGgoAA... ```