diff --git a/doc/api/dgram.markdown b/doc/api/dgram.markdown index 7ed670cf52f..100d6cc7dd7 100644 --- a/doc/api/dgram.markdown +++ b/doc/api/dgram.markdown @@ -124,7 +124,6 @@ Example of a UDP server listening on port 41234: var dgram = require("dgram"); var server = dgram.createSocket("udp4"); - var messageToSend = new Buffer("A message to send"); server.on("message", function (msg, rinfo) { console.log("server got: " + msg + " from " +