From 0b1448897d3db6accac936f27d3cfc9cada2ac2b Mon Sep 17 00:00:00 2001 From: narirou Date: Sun, 26 Nov 2017 17:28:21 +0900 Subject: [PATCH] doc: replace function with arrow function in vm.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/17307 Reviewed-By: Joyee Cheung Reviewed-By: Yosuke Furukawa Reviewed-By: Luigi Pinca Reviewed-By: Michaƫl Zasso Reviewed-By: Daijiro Wachi Reviewed-By: Gireesh Punathil Reviewed-By: Jon Moss Reviewed-By: James M Snell --- doc/api/vm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/vm.md b/doc/api/vm.md index 209302b450bc09..609ee6b895c91a 100644 --- a/doc/api/vm.md +++ b/doc/api/vm.md @@ -474,7 +474,7 @@ to the `http` module passed to it. For instance: const vm = require('vm'); const code = ` -(function(require) { +((require) => { const http = require('http'); http.createServer((request, response) => {