From f004589c276cffa057100bb0326dbfa7d37f4e94 Mon Sep 17 00:00:00 2001 From: Stefan Date: Fri, 28 Nov 2025 09:44:29 +0100 Subject: [PATCH 1/2] Fixed minor typo --- library_config/uninstall.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library_config/uninstall.cmake b/library_config/uninstall.cmake index e751ec47..b099582c 100644 --- a/library_config/uninstall.cmake +++ b/library_config/uninstall.cmake @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 2.8.5) set(MANIFEST "${CMAKE_CURRENT_BINARY_DIR}/install_manifest.txt") if(NOT EXISTS ${MANIFEST}) - message(FATAL_ERROR "Cannot find install mainfest: ${MANIFEST}") + message(FATAL_ERROR "Cannot find install manifest: ${MANIFEST}") endif() file(STRINGS ${MANIFEST} files) From 11e9b685fcfa57ad8f6f72375f3decf1e0e63cc0 Mon Sep 17 00:00:00 2001 From: Stefan Date: Fri, 28 Nov 2025 09:58:28 +0100 Subject: [PATCH 2/2] Fix typo in cJSON_Array description #915 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 99147afd..2457547d 100644 --- a/README.md +++ b/README.md @@ -216,7 +216,7 @@ The type can be one of the following: * `cJSON_NULL` (check with `cJSON_IsNull`): Represents a `null` value. * `cJSON_Number` (check with `cJSON_IsNumber`): Represents a number value. The value is stored as a double in `valuedouble` and also in `valueint`. If the number is outside of the range of an integer, `INT_MAX` or `INT_MIN` are used for `valueint`. * `cJSON_String` (check with `cJSON_IsString`): Represents a string value. It is stored in the form of a zero terminated string in `valuestring`. -* `cJSON_Array` (check with `cJSON_IsArray`): Represent an array value. This is implemented by pointing `child` to a linked list of `cJSON` items that represent the values in the array. The elements are linked together using `next` and `prev`, where the first element has `prev.next == NULL` and the last element `next == NULL`. +* `cJSON_Array` (check with `cJSON_IsArray`): Represent an array value. This is implemented by pointing `child` to a linked list of `cJSON` items that represent the values in the array. The elements are linked together using `next` and `prev`, where the first element has `prev == NULL` and the last element `next == NULL`. * `cJSON_Object` (check with `cJSON_IsObject`): Represents an object value. Objects are stored same way as an array, the only difference is that the items in the object store their keys in `string`. * `cJSON_Raw` (check with `cJSON_IsRaw`): Represents any kind of JSON that is stored as a zero terminated array of characters in `valuestring`. This can be used, for example, to avoid printing the same static JSON over and over again to save performance. cJSON will never create this type when parsing. Also note that cJSON doesn't check if it is valid JSON.