From 0ff6767355d4617bc5d6ea6c797f9157cb8bedd0 Mon Sep 17 00:00:00 2001 From: James Coglan Date: Mon, 29 Apr 2013 07:39:53 +0100 Subject: [PATCH] GitHub's markdown processor handles bolded code inconsistently. --- README.markdown | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.markdown b/README.markdown index c09f94e..7c0337f 100644 --- a/README.markdown +++ b/README.markdown @@ -115,12 +115,12 @@ following fields: A handler has two duplex streams attached to it: -* __`handler.io`__ - this stream should be attached to an I/O socket like a TCP +* `handler.io` - this stream should be attached to an I/O socket like a TCP stream. Pipe incoming TCP chunks to this stream for them to be parsed, and pipe this stream back into TCP to send outgoing frames. -* __`handler.messages`__ - this stream emits messages received over the - WebSocket. Writing to it sends messages to the other peer by emitting frames - via the `handler.io` stream. +* `handler.messages` - this stream emits messages received over the WebSocket. + Writing to it sends messages to the other peer by emitting frames via the + `handler.io` stream. All handlers respond to the following API methods, but some of them are no-ops depending on whether the client supports the behaviour.