From 6591e72b658c7d0d2218739b6dacb90d5495d03d Mon Sep 17 00:00:00 2001 From: slaff Date: Thu, 12 Oct 2023 09:52:12 +0200 Subject: [PATCH] Fixed small typos. (#2674) --- Sming/Arch/Rp2040/README.rst | 2 +- Sming/Kconfig | 2 +- tests/HostTests/modules/ArduinoString.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Sming/Arch/Rp2040/README.rst b/Sming/Arch/Rp2040/README.rst index 473fb85079..e5eab5f052 100644 --- a/Sming/Arch/Rp2040/README.rst +++ b/Sming/Arch/Rp2040/README.rst @@ -184,7 +184,7 @@ If core 1 code attempts to access flash during these periods the system will har Floating-point support requires use of routines in flash memory. Integer operations should all be safe to use. - If unexplained crashes are occuring then check the build output files (in out/Rp2040/debug/build) + If unexplained crashes are occurring then check the build output files (in out/Rp2040/debug/build) or use a debugger to identify any errant code running from flash. A typical use for core #1 might be to perform processing of some kind, such as processing data sampled diff --git a/Sming/Kconfig b/Sming/Kconfig index d0fffe8f95..9a4bfd12cd 100644 --- a/Sming/Kconfig +++ b/Sming/Kconfig @@ -47,7 +47,7 @@ mainmenu "${SMING_SOC} Sming Framework Configuration" bool "Enable command executor functionality" default y help - This facilty requires documenting! + This facility requires documenting! config TASK_QUEUE_LENGTH int "Length of task queue" diff --git a/tests/HostTests/modules/ArduinoString.cpp b/tests/HostTests/modules/ArduinoString.cpp index 48b11920cd..b38279c943 100644 --- a/tests/HostTests/modules/ArduinoString.cpp +++ b/tests/HostTests/modules/ArduinoString.cpp @@ -99,7 +99,7 @@ class ArduinoStringTest : public TestGroup REQUIRE(hello2 == "hello"); } - TEST_CASE("String concantenation", "[core][String]") + TEST_CASE("String concatenation", "[core][String]") { String str; REQUIRE(str.length() == 0);