I was browsing the [docs](http://nodejs.org/api/stream.html#stream_writable_end_chunk_encoding_callback) and found this: > Calling write() after calling end() will raise an error. But, on branch v0.10, this code does nothing: ``` js var http = require('http'); var server = http.createServer(function(req, res){ res.write('hi'); res.end(); res.write('hi again'); }); server.listen(8080, function(){ console.log('initialized'); }); ``` This is a known bug or an expected behavior?
I was browsing the docs and found this:
But, on branch v0.10, this code does nothing:
This is a known bug or an expected behavior?