This is an automated email from the ASF dual-hosted git repository.
alexey pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git
The following commit(s) were added to refs/heads/master by this push:
new 28a3baa [docs] Fix doxygen build
28a3baa is described below
commit 28a3baab6149ee9317c71a4afc04ad4f3c8da2f9
Author: Bankim Bhavsar <[email protected]>
AuthorDate: Mon May 3 16:01:27 2021 -0700
[docs] Fix doxygen build
Error in doxygen build due to incorrect function parameters.
Change-Id: I119989246f79c16988918de957553fa5d76a766f
Reviewed-on: http://gerrit.cloudera.org:8080/17390
Tested-by: Kudu Jenkins
Reviewed-by: Andrew Wong <[email protected]>
Reviewed-by: Alexey Serbin <[email protected]>
---
src/kudu/client/client.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/kudu/client/client.h b/src/kudu/client/client.h
index 10b55c6..55d8705 100644
--- a/src/kudu/client/client.h
+++ b/src/kudu/client/client.h
@@ -383,7 +383,7 @@ class KUDU_EXPORT KuduTransaction :
/// @c wait parameter, either returns right after that or awaits
/// for the commit to finalize.
///
- /// @param [in] mode
+ /// @param [in] wait
/// This parameter controls the way how this method operates:
/// @li @c true means synchronous operation mode
/// @li @c false means asynchronous operation mode
@@ -410,7 +410,7 @@ class KUDU_EXPORT KuduTransaction :
/// succeeded or failed by the time of processing the request.
/// This parameter is assigned a meaningful value iff the method returns
/// @c Status::OK().
- /// @param [out] commit_status
+ /// @param [out] completion_status
/// The status of finalization of the transaction's commit phase:
/// @li Status::OK() if the commit phase successfully finalized
/// @li non-OK status if the commit phase failed to finalize