From 3064417becf68fbe7e77b518cc862a1303095af7 Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Sat, 8 Oct 2016 13:06:23 +0200 Subject: [PATCH] Fix code in render-function.md Closes vuejs/vue#3873 --- src/guide/render-function.md | 1 - 1 file changed, 1 deletion(-) diff --git a/src/guide/render-function.md b/src/guide/render-function.md index 8024a3ac60..e6a3cf3d30 100644 --- a/src/guide/render-function.md +++ b/src/guide/render-function.md @@ -244,7 +244,6 @@ If you really want to duplicate the same element/component many times, you can d ``` js render: function (createElement) { - var myParagraph = return createElement('div', Array.apply(null, { length: 20 }).map(function () { return createElement('p', 'hi')