diff options
| author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-02-20 08:12:59 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-20 15:12:59 +0800 |
| commit | b62c0c8d9c22ae7fc9ee200733f8312efa6dbced (patch) | |
| tree | 8d7cef5b70f6a4d1023242a5b37b4ece50837bc6 /src/nvim/garray.h | |
| parent | 8784f064f15e5ae0b6bc85c2972ec16c64656e2b (diff) | |
| download | rneovim-b62c0c8d9c22ae7fc9ee200733f8312efa6dbced.tar.gz rneovim-b62c0c8d9c22ae7fc9ee200733f8312efa6dbced.tar.bz2 rneovim-b62c0c8d9c22ae7fc9ee200733f8312efa6dbced.zip | |
docs: fix typos (#21961)
Co-authored-by: Ben Morgan <cassava@iexu.de>
Diffstat (limited to 'src/nvim/garray.h')
| -rw-r--r-- | src/nvim/garray.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/garray.h b/src/nvim/garray.h index 1623c4db7b..d3e04cd761 100644 --- a/src/nvim/garray.h +++ b/src/nvim/garray.h @@ -52,7 +52,7 @@ static inline void *ga_append_via_ptr(garray_T *gap, size_t item_size) /// /// @param gap the garray to be freed /// @param item_type type of the item in the garray -/// @param free_item_fn free function that takes (*item_type) as parameter +/// @param free_item_fn free function that takes (item_type *) as parameter #define GA_DEEP_CLEAR(gap, item_type, free_item_fn) \ do { \ garray_T *_gap = (gap); \ |