From c6c7d81dbbbb691a9eb189fa8230cf370f0aa645 Mon Sep 17 00:00:00 2001 From: Giga Date: Mon, 16 Jan 2023 15:07:59 +1300 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index be5e5f6..a6ae242 100644 --- a/README.md +++ b/README.md @@ -132,9 +132,9 @@ Or you can also use the `GenericMessage` class to send raw data: ```typescript // This class accepts an array of number arrays, Uint8Arrays, byte-like strings, or any combination of the three. const message = new Messages.GenericMessage([ - [1, 23, 8, 74], // number[] + [1, 23, 8, 74], // number[] new Uint8Array([1, 23, 8, 74]), // Uint8Array - '0117084a' // Byte-like string + '0117084a' // Byte-like string ]); ```