From 2f2c9d47fd1a565aa1a7ffd69595d0248aa8d392 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Mon, 28 Mar 2011 15:55:45 -0700 Subject: [PATCH] Remove strange unicode output in docs --- doc/api/buffers.markdown | 2 -- 1 file changed, 2 deletions(-) diff --git a/doc/api/buffers.markdown b/doc/api/buffers.markdown index ca4480b..30c3f03 100644 --- a/doc/api/buffers.markdown +++ b/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) -- 2.7.4