From 09934ed42d40672da73791819846e297d526912c Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Fri, 19 Jun 2020 17:08:45 +1200 Subject: [PATCH] Fix example in readme (#25) --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index cf1b9ac..628741d 100644 --- a/readme.md +++ b/readme.md @@ -42,7 +42,7 @@ You can set width and/or height as columns and/or rows of the terminal window as const terminalImage = require('terminal-image'); (async () => { - console.log(await terminalImage.file('unicorn.jpg', {width: 50 })); + console.log(await terminalImage.file('unicorn.jpg', {width: 50})); })(); ```