From 4b1180443788e3fe8b9fe71ea493e4596c035935 Mon Sep 17 00:00:00 2001 From: YAshley Date: Sun, 19 Mar 2023 02:33:39 +0000 Subject: [PATCH 1/6] update test/rakefile. error: `defult` should be `default` --> .\test\rakefile:29:22 | 29 | # Load proper GCC as defult configuration | ^^^^^^ | Signed-off-by: YAshley --- test/rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/rakefile b/test/rakefile index e5f3b74..9bbde93 100644 --- a/test/rakefile +++ b/test/rakefile @@ -26,7 +26,7 @@ task :prepare_for_tests => TEMP_DIRS include RakefileHelpers -# Load proper GCC as defult configuration +# Load proper GCC as default configuration DEFAULT_CONFIG_FILE = 'gcc_auto_stdint.yml' configure_toolchain(DEFAULT_CONFIG_FILE) -- Gitee From d819651e455ca7e037c4cabfbf50c171ae867156 Mon Sep 17 00:00:00 2001 From: YAshley Date: Sun, 19 Mar 2023 02:36:03 +0000 Subject: [PATCH 2/6] update src/unity.c. error: `overrideable` should be `overridable` --> .\src\unity.c:16:36 | 16 | /* If omitted from header, declare overrideable prototypes here so they're ready for use */ | ^^^^^^^^^^^^ | Signed-off-by: YAshley --- src/unity.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unity.c b/src/unity.c index be3528f..e83a9dc 100644 --- a/src/unity.c +++ b/src/unity.c @@ -13,7 +13,7 @@ #define PROGMEM #endif -/* If omitted from header, declare overrideable prototypes here so they're ready for use */ +/* If omitted from header, declare overridable prototypes here so they're ready for use */ #ifdef UNITY_OMIT_OUTPUT_CHAR_HEADER_DECLARATION void UNITY_OUTPUT_CHAR(int); #endif -- Gitee From 998ae79b0fa17937c1dad8b869d707d994effe0e Mon Sep 17 00:00:00 2001 From: YAshley Date: Sun, 19 Mar 2023 02:36:36 +0000 Subject: [PATCH 3/6] update README.md. error: `targetting` should be `targeting` --> .\README.md:8:35 | 8 | This project is made to test code targetting microcontrollers big and small. The core project is a | ^^^^^^^^^^ | Signed-off-by: YAshley --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cab2de3..cdfb3bb 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ __Copyright (c) 2007 - 2021 Unity Project by Mike Karlesky, Mark VanderVoord, an Welcome to the Unity Test Project, one of the main projects of ThrowTheSwitch.org. Unity Test is a unit testing framework built for C, with a focus on working with embedded toolchains. -This project is made to test code targetting microcontrollers big and small. The core project is a +This project is made to test code targeting microcontrollers big and small. The core project is a single C file and a pair of headers, allowing it to the added to your existing build setup without too much headache. You may use any compiler you wish, and may use most existing build systems including make, cmake, etc. If you'd like to leave the hard work to us, you might be interested -- Gitee From aff7483bc8ea9703808d44595018cd872d03fa48 Mon Sep 17 00:00:00 2001 From: YAshley Date: Sun, 19 Mar 2023 02:37:17 +0000 Subject: [PATCH 4/6] update extras/eclipse/error_parsers.txt. error: `Unforunately` should be `Unfortunately` --> .\extras\eclipse\error_parsers.txt:5:48 | 5 | warnings & error messages from console output. Unforunately | ^^^^^^^^^^^^ | Signed-off-by: YAshley --- extras/eclipse/error_parsers.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/eclipse/error_parsers.txt b/extras/eclipse/error_parsers.txt index 94e34ff..dfe8b83 100644 --- a/extras/eclipse/error_parsers.txt +++ b/extras/eclipse/error_parsers.txt @@ -2,7 +2,7 @@ Eclipse error parsers ===================== These are a godsend for extracting & quickly navigating to -warnings & error messages from console output. Unforunately +warnings & error messages from console output.Unfortunately I don't know how to write an Eclipse plugin so you'll have to add them manually. -- Gitee From 8aa2326b89097d6a6ea15cbb02040d4ba2312be4 Mon Sep 17 00:00:00 2001 From: YAshley Date: Sun, 19 Mar 2023 02:39:01 +0000 Subject: [PATCH 5/6] update docs/UnityConfigurationGuide.md. error: `assymetry` should be `asymmetry` --> .\docs\UnityConfigurationGuide.md:449:29 | 449 | comparison using `!=`. This assymetry was confusing, but there was much | ^^^^^^^^^ | Signed-off-by: YAshley --- docs/UnityConfigurationGuide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/UnityConfigurationGuide.md b/docs/UnityConfigurationGuide.md index de691fd..6514fcd 100644 --- a/docs/UnityConfigurationGuide.md +++ b/docs/UnityConfigurationGuide.md @@ -446,7 +446,7 @@ _Example:_ These options give you control of the `TEST_ASSERT_EQUAL` and the `TEST_ASSERT_NOT_EQUAL` shorthand assertions. Historically, Unity treated the former as an alias for an integer comparison. It treated the latter as a direct -comparison using `!=`. This assymetry was confusing, but there was much +comparison using `!=`. This asymmetry was confusing, but there was much disagreement as to how best to treat this pair of assertions. These four options will allow you to specify how Unity will treat these assertions. -- Gitee From d39d2df85f0aacd3baa2d59a3459c879a6d40d27 Mon Sep 17 00:00:00 2001 From: YAshley Date: Sun, 19 Mar 2023 02:39:48 +0000 Subject: [PATCH 6/6] update CMakeLists.txt. error: `Bulding` should be `Building` --> .\CMakeLists.txt:52:28 | 52 | message(STATUS "Unity: Bulding with the fixture extension.") | ^^^^^^^ | Signed-off-by: YAshley --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3a16cdc..85add0b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -49,7 +49,7 @@ set(UNITY_EXTENSION_FIXTURE_ENABLED $) set(UNITY_EXTENSION_MEMORY_ENABLED $>) if(${UNITY_EXTENSION_FIXTURE}) - message(STATUS "Unity: Bulding with the fixture extension.") + message(STATUS "Unity: Building with the fixture extension.") endif() if(${UNITY_EXTENSION_MEMORY}) -- Gitee