diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-09-26 19:31:26 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-09-28 03:01:57 +0200 |
commit | 9c2f4ce20d4ab36b17887ae927bab73432565515 (patch) | |
tree | f9070585cb19007c9583a160b088473306d1fbf4 /src/nvim/rbuffer.h | |
parent | 22dfe6925d4784cf60d8d9a054abc5066e4b867f (diff) | |
download | rneovim-9c2f4ce20d4ab36b17887ae927bab73432565515.tar.gz rneovim-9c2f4ce20d4ab36b17887ae927bab73432565515.tar.bz2 rneovim-9c2f4ce20d4ab36b17887ae927bab73432565515.zip |
doc: minor comment tweaks
Diffstat (limited to 'src/nvim/rbuffer.h')
-rw-r--r-- | src/nvim/rbuffer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/rbuffer.h b/src/nvim/rbuffer.h index 454972c69d..a8dfcac580 100644 --- a/src/nvim/rbuffer.h +++ b/src/nvim/rbuffer.h @@ -1,4 +1,4 @@ -// Ring buffer implementation. This is basically an array that wraps read/write +// Specialized ring buffer. This is basically an array that wraps read/write // pointers around the memory region. It should be more efficient than the old // RBuffer which required memmove() calls to relocate read/write positions. // |