diff options
Diffstat (limited to 'src/nvim/lib/ringbuf.h')
-rw-r--r-- | src/nvim/lib/ringbuf.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/lib/ringbuf.h b/src/nvim/lib/ringbuf.h index f86d656deb..cb71500bb7 100644 --- a/src/nvim/lib/ringbuf.h +++ b/src/nvim/lib/ringbuf.h @@ -62,7 +62,7 @@ /// Define a ring buffer structure /// -/// @param TypeName Ring buffer type name. Actual type name will be +/// @param TypeName Ring buffer type name. Actual type name will be /// `{TypeName}RingBuffer`. /// @param RBType Type of the single ring buffer element. #define RINGBUF_TYPEDEF(TypeName, RBType) \ @@ -75,12 +75,12 @@ typedef struct { \ /// Initialize a new ring buffer /// -/// @param TypeName Ring buffer type name. Actual type name will be +/// @param TypeName Ring buffer type name. Actual type name will be /// `{TypeName}RingBuffer`. -/// @param funcprefix Prefix for all ring buffer functions. Function name will +/// @param funcprefix Prefix for all ring buffer functions. Function name will /// look like `{funcprefix}_rb_{function_name}`. /// @param RBType Type of the single ring buffer element. -/// @param rbfree Function used to free ring buffer element. May be +/// @param rbfree Function used to free ring buffer element. May be /// a macros like `#define RBFREE(item)` (to skip freeing). /// /// Intended function signature: `void *rbfree(RBType *)`; |