From 978a50c500b2f02c278f9cb754b1e4a067099b4f Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Mon, 28 Mar 2011 15:46:36 -0700 Subject: [PATCH] Remove exterraneous line --- doc/api/dgram.markdown | 1 - 1 file changed, 1 deletion(-) 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 " +