[Tarantool-patches] [PATCH v2 1/3] box: introduce port_c
Vladislav Shpilevoy
v.shpilevoy at tarantool.org
Sat Apr 25 01:06:25 MSK 2020
Hi! Thanks for the review!
>> diff --git a/src/box/port.c b/src/box/port.c
>> index 6e2fe3a6e..2c1fadb5c 100644
>> --- a/src/box/port.c
>> +++ b/src/box/port.c
>> @@ -37,7 +37,18 @@
>> #include <fiber.h>
>> #include "errinj.h"
>>
>> -static struct mempool port_tuple_entry_pool;
>> +/**
>> + * The pools is used both by port_c and port_tuple, since their
>
> Typo: s/is/are/.
Fixed:
====================
diff --git a/src/box/port.c b/src/box/port.c
index 2c1fadb5c..eabc19ded 100644
--- a/src/box/port.c
+++ b/src/box/port.c
@@ -38,7 +38,7 @@
#include "errinj.h"
/**
- * The pools is used both by port_c and port_tuple, since their
+ * The pool is used both by port_c and port_tuple, since their
* entires are almost of the same size. Also port_c can use
* objects from the pool to store result data in their memory,
* when it fits.
More information about the Tarantool-patches
mailing list