Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/mpack/mpack-node.h
Original file line number Diff line number Diff line change
Expand Up @@ -985,7 +985,7 @@ size_t mpack_node_bin_size(mpack_node_t node);
*
* This returns zero if the tree is in an error state.
*
* If this node is not a str, bin or map, @ref mpack_error_type is raised and zero
* If this node is not a str, bin or ext, @ref mpack_error_type is raised and zero
* is returned.
*/
uint32_t mpack_node_data_len(mpack_node_t node);
Expand Down Expand Up @@ -1025,7 +1025,7 @@ const char* mpack_node_str(mpack_node_t node);
*
* The pointer is valid as long as the data backing the tree is valid.
*
* If this node is not of a str, bin or map, @ref mpack_error_type is raised, and
* If this node is not of a str, bin or ext, @ref mpack_error_type is raised, and
* @c NULL is returned.
*
* @see mpack_node_copy_cstr()
Expand Down