Browse Source

Fix typos found by codespell

Do not fix typos from past commits found in release notes.
tags/json-c-0.17-20230812
Dimitri Papadopoulos 3 years ago
parent
commit
9462c0a7b5
No known key found for this signature in database GPG Key ID: 95998121D9D25F5D
3 changed files with 7 additions and 7 deletions
  1. +1
    -1
      doc/Doxyfile.in
  2. +3
    -3
      tests/test_deep_copy.c
  3. +3
    -3
      tests/test_deep_copy.expected

+ 1
- 1
doc/Doxyfile.in View File

@@ -1103,7 +1103,7 @@ HTML_STYLESHEET =
# cascading style sheets that are included after the standard style sheets # cascading style sheets that are included after the standard style sheets
# created by doxygen. Using this option one can overrule certain style aspects. # created by doxygen. Using this option one can overrule certain style aspects.
# This is preferred over using HTML_STYLESHEET since it does not replace the # This is preferred over using HTML_STYLESHEET since it does not replace the
# standard style sheet and is therefor more robust against future updates.
# standard style sheet and is therefore more robust against future updates.
# Doxygen will copy the style sheet files to the output directory. # Doxygen will copy the style sheet files to the output directory.
# Note: The order of the extra stylesheet files is of importance (e.g. the last # Note: The order of the extra stylesheet files is of importance (e.g. the last
# stylesheet in the list overrules the setting of the previous ones in the # stylesheet in the list overrules the setting of the previous ones in the


+ 3
- 3
tests/test_deep_copy.c View File

@@ -22,7 +22,7 @@ static const char *json_str1 =
" \"number\": 16446744073709551615," " \"number\": 16446744073709551615,"
" \"title\": \"S\"," " \"title\": \"S\","
" \"null_obj\": null, " " \"null_obj\": null, "
" \"exixt\": false,"
" \"exist\": false,"
" \"quantity\":20," " \"quantity\":20,"
" \"univalent\":19.8," " \"univalent\":19.8,"
" \"GlossList\": {" " \"GlossList\": {"
@@ -136,7 +136,7 @@ int main(int argc, char **argv)
assert(0 == json_object_deep_copy(src2, &dst2, NULL)); assert(0 == json_object_deep_copy(src2, &dst2, NULL));
assert(0 == json_object_deep_copy(src3, &dst3, NULL)); assert(0 == json_object_deep_copy(src3, &dst3, NULL));


printf("PASSED - all json_object_deep_copy() returned succesful\n");
printf("PASSED - all json_object_deep_copy() returned successful\n");


assert(-1 == json_object_deep_copy(src1, &dst1, NULL)); assert(-1 == json_object_deep_copy(src1, &dst1, NULL));
assert(errno == EINVAL); assert(errno == EINVAL);
@@ -151,7 +151,7 @@ int main(int argc, char **argv)
assert(1 == json_object_equal(src2, dst2)); assert(1 == json_object_equal(src2, dst2));
assert(1 == json_object_equal(src3, dst3)); assert(1 == json_object_equal(src3, dst3));


printf("PASSED - all json_object_equal() tests returned succesful\n");
printf("PASSED - all json_object_equal() tests returned successful\n");


assert(0 == strcmp(json_object_to_json_string_ext(src1, JSON_C_TO_STRING_PRETTY), assert(0 == strcmp(json_object_to_json_string_ext(src1, JSON_C_TO_STRING_PRETTY),
json_object_to_json_string_ext(dst1, JSON_C_TO_STRING_PRETTY))); json_object_to_json_string_ext(dst1, JSON_C_TO_STRING_PRETTY)));


+ 3
- 3
tests/test_deep_copy.expected View File

@@ -1,7 +1,7 @@
PASSED - loaded input data PASSED - loaded input data
PASSED - all json_object_deep_copy() returned succesful
PASSED - all json_object_deep_copy() returned successful
PASSED - all json_object_deep_copy() returned EINVAL for non-null pointer PASSED - all json_object_deep_copy() returned EINVAL for non-null pointer
PASSED - all json_object_equal() tests returned succesful
PASSED - all json_object_equal() tests returned successful
PASSED - comparison of string output PASSED - comparison of string output
PASSED - trying to overrwrite an object that has refcount > 1 PASSED - trying to overrwrite an object that has refcount > 1
Printing JSON objects for visual inspection Printing JSON objects for visual inspection
@@ -14,7 +14,7 @@ Printing JSON objects for visual inspection
"number":16446744073709551615, "number":16446744073709551615,
"title":"S", "title":"S",
"null_obj":null, "null_obj":null,
"exixt":false,
"exist":false,
"quantity":20, "quantity":20,
"univalent":19.8, "univalent":19.8,
"GlossList":{ "GlossList":{


Loading…
Cancel
Save