mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-24 04:16:00 +08:00
Lint code - change double quotes to single in website/jsdocs. Add/remove semicolons to keep code style
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user