From ba99a89ee6dcf537bc863681fa774f99480350f1 Mon Sep 17 00:00:00 2001 From: David Fowler Date: Mon, 1 May 2017 09:13:47 -0700 Subject: [PATCH] Fixed typo in the spec (#431) --- specs/TransportProtocols.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs/TransportProtocols.md b/specs/TransportProtocols.md index cb3e18287f..ecad03d5f5 100644 --- a/specs/TransportProtocols.md +++ b/specs/TransportProtocols.md @@ -141,7 +141,7 @@ T([Length]:[Type]:[Body];)([Length]:[Type]:[Body];)... continues until end of th The following values are valid for `[Type]`: * `T` - Indicates a text frame, the `[Body]` contains UTF-8 encoded text data. -* `B` - Indicates a text frame, the `[Body]` contains Base64 encoded binary data. +* `B` - Indicates a binary frame, the `[Body]` contains Base64 encoded binary data. * `E` - Indicates an error frame, the `[Body]` contains an optional UTF-8 encoded error description. The connection is immediately closed after processing this frame. * `C` - Indicates a close frame, the `[Body]` contains an optional UTF-8 encoded description of the reason for closing. The connection is immediately closed after processing this frame.