doc: minor comment tweaks

This commit is contained in:
Justin M. Keyes
2016-09-26 19:31:26 +02:00
parent 22dfe6925d
commit 9c2f4ce20d
10 changed files with 26 additions and 30 deletions

View File

@@ -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.
//