Skip to content

Commit c7e7d63

Browse files
authored
Merge pull request #93 from MasFlam/develop
Fix doc comments for mpack_node_data{,_len}()
2 parents 70627c7 + 55cff54 commit c7e7d63

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mpack/mpack-node.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -985,7 +985,7 @@ size_t mpack_node_bin_size(mpack_node_t node);
985985
*
986986
* This returns zero if the tree is in an error state.
987987
*
988-
* If this node is not a str, bin or map, @ref mpack_error_type is raised and zero
988+
* If this node is not a str, bin or ext, @ref mpack_error_type is raised and zero
989989
* is returned.
990990
*/
991991
uint32_t mpack_node_data_len(mpack_node_t node);
@@ -1025,7 +1025,7 @@ const char* mpack_node_str(mpack_node_t node);
10251025
*
10261026
* The pointer is valid as long as the data backing the tree is valid.
10271027
*
1028-
* If this node is not of a str, bin or map, @ref mpack_error_type is raised, and
1028+
* If this node is not of a str, bin or ext, @ref mpack_error_type is raised, and
10291029
* @c NULL is returned.
10301030
*
10311031
* @see mpack_node_copy_cstr()

0 commit comments

Comments
 (0)