Lint code - change double quotes to single in website/jsdocs. Add/remove semicolons to keep code style

This commit is contained in:
Steve Lacy
2015-03-26 11:14:54 -07:00
parent 937dec72f6
commit 5a4e780ac3
7 changed files with 32 additions and 32 deletions

View File

@@ -9,7 +9,7 @@
/*global exports:true*/
/*jslint node:true*/
"use strict";
'use strict';
var util = require('util');
@@ -278,7 +278,7 @@ function renderParams(/*?object*/ params) /*string*/ {
var returnParam = '\"returns\":' + '\'' + params.returns + '\'';
formattedParams.push(returnParam);
}
return "{" + formattedParams.join(',') + "}";
return '{' + formattedParams.join(',') + '}';
}
function getModuleName(state) {