Correct minor grammar issues in the reorder library documentation: - add missing "are" in "which are referred to as" - remove extra space before "mbufs"
Signed-off-by: Stephen Hemminger <[email protected]> --- doc/guides/prog_guide/reorder_lib.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/guides/prog_guide/reorder_lib.rst b/doc/guides/prog_guide/reorder_lib.rst index 3fb5df5570..a5f529145d 100644 --- a/doc/guides/prog_guide/reorder_lib.rst +++ b/doc/guides/prog_guide/reorder_lib.rst @@ -36,7 +36,7 @@ mbufs. Implementation Details ------------------------- -The reorder library is implemented as a pair of buffers, which referred to as +The reorder library is implemented as a pair of buffers, which are referred to as the *Order* buffer and the *Ready* buffer. On an insert call, valid mbufs are inserted directly into the Order buffer and @@ -62,7 +62,7 @@ be reported as late packets when they arrive. The process of moving packets to the Ready buffer continues beyond the minimum required until a gap, i.e. missing mbuf, in the Order buffer is encountered. -When draining mbufs, the reorder buffer would return mbufs in the Ready +When draining mbufs, the reorder buffer would return mbufs in the Ready buffer first and then from the Order buffer until a gap is found (mbufs that have not arrived yet). -- 2.51.0

