We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79dbbaf commit d0beec8Copy full SHA for d0beec8
README.md
@@ -45,7 +45,7 @@ void example (void)
45
if (cw_unpack_next_map_size(&uc) != 2) ERROR;
46
if (cw_unpack_next_str_lengh(&uc) != 7) ERROR;
47
if (strncmp("compact", uc.item.as.str.start, 7)) ERROR;
48
- if (cw_unpack_next_bool(&uc) != true) ERROR;
+ if (cw_unpack_next_boolean(&uc) != true) ERROR;
49
if (cw_unpack_next_str_lengh(&uc) != 6) ERROR;
50
if (strncmp("schema", uc.item.as.str.start, 6)) ERROR;
51
if (cw_unpack_next_signed32(&uc) != 0) ERROR;
0 commit comments