Skip to content

Commit 9ed4f21

Browse files
committed
fix syntax error
1 parent 9607a1b commit 9ed4f21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks/Internet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ var server = require("net").createServer(function(c) {
223223
c.write("Hello");
224224
c.on('data', function(data) {
225225
console.log(">"+JSON.stringify(data));
226-
}
226+
});
227227
c.end();
228228
});
229229
server.listen(1234);

0 commit comments

Comments
 (0)