From: Rich Trott Date: Sat, 6 Feb 2016 07:58:35 +0000 (-0800) Subject: doc: fix dgram doc indentation X-Git-Tag: v4.4.0~116 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=47269c26256c2affebf85aeb8188c93d32e31cc3;p=platform%2Fupstream%2Fnodejs.git doc: fix dgram doc indentation PR-URL: https://github.com/nodejs/node/pull/5118 Reviewed-By: Roman Reiss --- diff --git a/doc/api/dgram.markdown b/doc/api/dgram.markdown index 3b1b6b4..4deef93 100644 --- a/doc/api/dgram.markdown +++ b/doc/api/dgram.markdown @@ -339,6 +339,7 @@ function: ## `dgram` module functions ### dgram.createSocket(options[, callback]) + * `options` Object * `callback` Function. Attached as a listener to `'message'` events. * Returns: Socket object @@ -359,7 +360,7 @@ interfaces" address on a random port (it does the right thing for both `udp4` and `udp6` sockets). The bound address and port can be retrieved using [`socket.address().address`][] and [`socket.address().port`][]. -## dgram.createSocket(type[, callback]) +### dgram.createSocket(type[, callback]) * `type` String. Either 'udp4' or 'udp6' * `callback` Function. Attached as a listener to `'message'` events.