From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp53.i.mail.ru (smtp53.i.mail.ru [94.100.177.113]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id D9E4D42EF5D for ; Thu, 18 Jun 2020 15:14:20 +0300 (MSK) From: Serge Petrenko Date: Thu, 18 Jun 2020 15:14:00 +0300 Message-Id: In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH 1/4] xrow: fix comment typo List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: v.shpilevoy@tarantool.org, gorcunov@gmail.com Cc: tarantool-patches@dev.tarantool.org --- src/box/xrow.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/box/xrow.h b/src/box/xrow.h index 75af71b77..027b6b14f 100644 --- a/src/box/xrow.h +++ b/src/box/xrow.h @@ -214,7 +214,7 @@ xrow_encode_dml(const struct request *request, struct region *region, * @param replica_id master's instance id. * @param lsn last confirmed lsn. * @retval -1 on error. - * @retval > 0 xrow bodycnt. + * @retval 0 success. */ int xrow_encode_confirm(struct xrow_header *row, uint32_t replica_id, int64_t lsn); @@ -224,8 +224,8 @@ xrow_encode_confirm(struct xrow_header *row, uint32_t replica_id, int64_t lsn); * @param row xrow header. * @param[out] replica_id master's instance id. * @param[out] lsn last confirmed lsn. - * @retwal -1 on error. - * @retwal 0 success. + * @retval -1 on error. + * @retval 0 success. */ int xrow_decode_confirm(struct xrow_header *row, uint32_t *replica_id, int64_t *lsn); -- 2.24.3 (Apple Git-128)