Browse Source

Remove strange unicode output in docs

v0.7.4-release
Ryan Dahl 14 years ago
parent
commit
2f2c9d47fd
  1. 2
      doc/api/buffers.markdown

2
doc/api/buffers.markdown

@ -55,8 +55,6 @@ Example: write a utf8 string into a buffer, then print it
len = buf.write('\u00bd + \u00bc = \u00be', 0);
console.log(len + " bytes: " + buf.toString('utf8', 0, len));
// 12 bytes: ½ + ¼ = ¾
### buffer.toString(encoding, start=0, end=buffer.length)

Loading…
Cancel
Save