Skip to content

Commit c1f1c54

Browse files
committed
Remove two spaces that eslint now thinks are a problem
1 parent 5ca52e3 commit c1f1c54

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/appmetrics-dash.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ exports.monitor = function(options) {
140140

141141
if (!options.server) {
142142
// Create and use our own express server on the user-specified port/host.
143-
var port = options.port || 3001; // Set a default port if one is not supplied
143+
var port = options.port || 3001; // Set a default port if one is not supplied
144144
var host = options.host;
145145
var app = express();
146146
server = require('http').Server(app);

public/profiling.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ socket.on('profiling', (profilingSample) => {
102102
// console.log("Adding sample: " + profiling_row.time);
103103
// console.dir(profiling_row);
104104

105-
let profiling_row = JSON.parse(profilingSample); // parses the data into a JSON array
105+
let profiling_row = JSON.parse(profilingSample); // parses the data into a JSON array
106106
let indexed_nodes = {};
107107
// Index this so we can find parents faster.
108108
profiling_row.functions.map((node) => { indexed_nodes[node.self] = node; });

0 commit comments

Comments
 (0)