Skip to content

Commit

Permalink
repaired plain node reject example
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCK committed May 12, 2015
1 parent ba7d80f commit 62ca9b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/nodejs/plain/reject.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ http.createServer(function (req, res) {
'Content-Type': 'application/xml'
});

res.header('Content-Type','application/xml').write(body);
res.write(body);

res.end();
}).listen(3000);
Expand Down

0 comments on commit 62ca9b0

Please sign in to comment.