doc: move description of 'equals' method to right place
authorjanriemer <janriemer@users.noreply.github.com>
Thu, 10 Dec 2015 09:12:15 +0000 (10:12 +0100)
committerMyles Borins <mborins@us.ibm.com>
Tue, 19 Jan 2016 19:52:23 +0000 (11:52 -0800)
the description of buffer.equals(otherBuffer) was at the wrong
place; move it underneath the method signature

PR-URL: https://github.com/nodejs/node/pull/4227
Reviewed-By: Brian White <mscdex@mscdex.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
doc/api/buffer.markdown

index 5f52acd..618ec7b 100644 (file)
@@ -208,9 +208,6 @@ Example: copy an ASCII string into a buffer, one byte at a time:
 
     // Node.js
 
-Returns a boolean indicating whether `this` and `otherBuffer` have the same
-bytes.
-
 ### buf.compare(otherBuffer)
 
 * `otherBuffer` {Buffer}
@@ -267,6 +264,8 @@ region in the same buffer
 
 * `otherBuffer` {Buffer}
 
+Returns a boolean indicating whether `this` and `otherBuffer` have the same bytes.
+
 ### buf.fill(value[, offset][, end])
 
 * `value`