doc: fix dgram doc indentation
authorRich Trott <rtrott@gmail.com>
Sat, 6 Feb 2016 07:58:35 +0000 (23:58 -0800)
committerMyles Borins <mborins@us.ibm.com>
Wed, 2 Mar 2016 22:01:11 +0000 (14:01 -0800)
PR-URL: https://github.com/nodejs/node/pull/5118
Reviewed-By: Roman Reiss <me@silverwind.io>
doc/api/dgram.markdown

index 3b1b6b4..4deef93 100644 (file)
@@ -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.