Skip to content

Commit

Permalink
semi-correction hakimel#470
Browse files Browse the repository at this point in the history
  • Loading branch information
hakimel committed Jun 9, 2013
1 parent 1c16148 commit 5655b5f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugin/multiplex/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ app.configure(function() {
});

app.get("/", function(req, res) {
res.writeHead(200, {'Content-Type': 'text/html'})
res.writeHead(200, {'Content-Type': 'text/html'});
fs.createReadStream(opts.baseDir + '/index.html').pipe(res);
});

Expand Down
2 changes: 1 addition & 1 deletion plugin/notes-server/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ app.configure(function() {
});

app.get("/", function(req, res) {
res.writeHead(200, {'Content-Type': 'text/html'})
res.writeHead(200, {'Content-Type': 'text/html'});
fs.createReadStream(opts.baseDir + '/index.html').pipe(res);
});

Expand Down

0 comments on commit 5655b5f

Please sign in to comment.