From 5708140f103f40f978f259294c12e0e5e9644a02 Mon Sep 17 00:00:00 2001 From: probablycorey Date: Mon, 27 Jan 2014 17:30:14 -0800 Subject: [PATCH] Use string interpolation --- docs/your-first-package.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/your-first-package.md b/docs/your-first-package.md index bafdcfecd..de03f483d 100644 --- a/docs/your-first-package.md +++ b/docs/your-first-package.md @@ -135,7 +135,7 @@ convert: -> if error console.error(error) else - selection.insertText("\n" + asciiArt + "\n") + selection.insertText("\n#{asciiArt}\n") ``` ## Further reading