docs: Added missing parenthesis to buffer.readUInt8 example.

Fixes #1790.
pull/5370/head
koichik 2011-09-30 17:05:50 +09:00
parent 84641fcdf0
commit 530082932d
1 changed files with 1 additions and 1 deletions

View File

@ -189,7 +189,7 @@ Example:
buf[3] = 0x42; buf[3] = 0x42;
for (ii = 0; ii < buf.length; ii++) { for (ii = 0; ii < buf.length; ii++) {
console.log(buf.readUInt8(ii); console.log(buf.readUInt8(ii));
} }
// 0x3 // 0x3