diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-09-28 12:46:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-28 12:46:03 +0200 |
commit | 87fa495b21c8afa77c190b30e67c78f237c77216 (patch) | |
tree | 3b426c3d6ede9c7ea4099c1c798fdac05e662d38 /src/nvim/rbuffer.h | |
parent | 22dfe6925d4784cf60d8d9a054abc5066e4b867f (diff) | |
parent | 7e6a8310b73579b2fa78fb6c410c7101a9f70254 (diff) | |
download | rneovim-87fa495b21c8afa77c190b30e67c78f237c77216.tar.gz rneovim-87fa495b21c8afa77c190b30e67c78f237c77216.tar.bz2 rneovim-87fa495b21c8afa77c190b30e67c78f237c77216.zip |
Merge #5395 from justinmk/log
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. // |