From e07d355da43207010d63057e8c52a4318e35ab6c Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Sat, 23 Aug 2025 21:01:48 +0200 Subject: [PATCH] Fix docstring formatting --- stack.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/stack.c b/stack.c index 72ea52e..80f8b3a 100644 --- a/stack.c +++ b/stack.c @@ -16,10 +16,10 @@ #endif typedef struct { - uint8_t *buf; //!< Pointer to the internal buffer */ - size_t buf_sz; //!< The length of the allocated buffer, in bytes */ - size_t read_ptr; //!< Indicates where to read/write */ - size_t item_sz; //!< The size of the contained item, in bytes */ + uint8_t *buf; //!< Pointer to the internal buffer + size_t buf_sz; //!< The length of the allocated buffer, in bytes + size_t read_ptr; //!< Indicates where to read/write + size_t item_sz; //!< The size of the contained item, in bytes } Stack; typedef enum {