From 1c97b65a032922f259a32ac75a851318db84cea7 Mon Sep 17 00:00:00 2001 From: thehanslevi Date: Sat, 13 Jun 2026 20:18:06 -0400 Subject: [PATCH] docs: fix README recommendation spelling --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3a4c542..0202e2b 100644 --- a/README.md +++ b/README.md @@ -172,9 +172,9 @@ The storage size of such boards for packets, queue of packets, max packet binary ### Usage Recommendation for Arduino Uno (and other boards with tiny memory size) -For the boards which has tiny memory size (e.g. Arduino Uno), I reccomend not to use publisher and subscriber. +For the boards which has tiny memory size (e.g. Arduino Uno), I recommend not to use publisher and subscriber. Though you can use them on such boards, such rich functions requires more memory. -The reccomended way is to use `send` and `parse` manually. +The recommended way is to use `send` and `parse` manually. The example is shown in `examples/arduino/OscEtherUno`, so please consider to use it. ```C++