From 5c5caf8967107094f9163e34b4ef9237f6da307d Mon Sep 17 00:00:00 2001 From: KitsuneAlex Date: Sat, 4 May 2024 19:30:52 +0200 Subject: [PATCH] Fix unfinished documentation for msdf_segment_get_type --- msdfgen_c.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msdfgen_c.h b/msdfgen_c.h index 326bce7..957ad1a 100644 --- a/msdfgen_c.h +++ b/msdfgen_c.h @@ -401,7 +401,7 @@ MSDF_API int msdf_segment_get_type(msdf_segment_const_handle segment, int* type) /** * Retrieves the point count of the given segment. * @param segment A pointer to the segment of which to retrieve the number of points. - * @param point_count A pointer to a variable which is populated with + * @param point_count A pointer to a variable which is populated with the number of points of the given segment. * @returns @code MSDF_SUCCESS@endcode on success, otherwise one of the constants prefixed with @code MSDF_ERR_@endcode. */ MSDF_API int msdf_segment_get_point_count(msdf_segment_const_handle segment, size_t* point_count);