From 9035ba236f5b3f1d44133bc1981f0a1fa9608049 Mon Sep 17 00:00:00 2001 From: James Coglan Date: Sat, 6 Dec 2014 00:21:11 +0000 Subject: [PATCH] We use strings for buffers now, not arrays. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index db00c57..cdaac61 100644 --- a/README.md +++ b/README.md @@ -49,8 +49,8 @@ represent the data encoded in the frame: | `rsv3` | `true` if the `RSV3` bit is set, `false` otherwise | | `opcode` | the numeric opcode (`0`, `1`, `2`, `8`, `9`, or `10`) of the frame | | `masked` | `true` if the `MASK` bit is set, `false` otherwise | -| `masking_key` | a 4-byte `Array` if `masked` is `true`, otherwise `nil` | -| `payload` | an `Array` of bytes containing the (unmasked) application data | +| `masking_key` | a 4-byte string if `masked` is `true`, otherwise `nil` | +| `payload` | a string containing the (unmasked) application data | #### *Message*