summaryrefslogtreecommitdiff
path: root/benchmark/net/tcp-raw-s2c.js
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/net/tcp-raw-s2c.js')
-rw-r--r--benchmark/net/tcp-raw-s2c.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/benchmark/net/tcp-raw-s2c.js b/benchmark/net/tcp-raw-s2c.js
index fbb7d2520c..4dd1ad6ee8 100644
--- a/benchmark/net/tcp-raw-s2c.js
+++ b/benchmark/net/tcp-raw-s2c.js
@@ -110,12 +110,12 @@ function main({ dur, len, type }) {
connectReq.oncomplete = function() {
var bytes = 0;
clientHandle.onread = function(buffer) {
- // we're not expecting to ever get an EOF from the client.
- // just lots of data forever.
+ // We're not expecting to ever get an EOF from the client.
+ // Just lots of data forever.
if (!buffer)
fail('read');
- // don't slice the buffer. the point of this is to isolate, not
+ // Don't slice the buffer. The point of this is to isolate, not
// simulate real traffic.
bytes += buffer.byteLength;
};