summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2016-04-15 21:21:12 -0700
committerJames M Snell <jasnell@gmail.com>2016-04-26 12:16:17 -0700
commit6f073ce9dbbdef6194ea28ed3d2d3f78d59c804e (patch)
tree4857e636038add7b79516f5fc75eb2044cce0f07 /tools
parent8b8746f43dbfe4766eac2876e4fc56918e4dd160 (diff)
downloadnode-new-6f073ce9dbbdef6194ea28ed3d2d3f78d59c804e.tar.gz
lib,test,tools: alignment on variable assignments
Correct alignment on variable assignments that span multiple lines in preparation for lint rule to enforce such alignment. PR-URL: https://github.com/nodejs/node/pull/6242 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Johan Bergström <bugs@bergstroem.nu> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/doc/type-parser.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/doc/type-parser.js b/tools/doc/type-parser.js
index 2e6c5bea91..a5698892b8 100644
--- a/tools/doc/type-parser.js
+++ b/tools/doc/type-parser.js
@@ -1,9 +1,9 @@
'use strict';
const nodeDocUrl = '';
const jsDocUrl = 'https://developer.mozilla.org/en-US/docs/Web/JavaScript/' +
- 'Reference/Global_Objects/';
+ 'Reference/Global_Objects/';
const jsPrimitiveUrl = 'https://developer.mozilla.org/en-US/docs/Web/' +
- 'JavaScript/Data_structures';
+ 'JavaScript/Data_structures';
const jsPrimitives = [
'Number', 'String', 'Boolean', 'Null', 'Symbol'
];