From 524700fd62c9cb74e26770c4149a198e58103d30 Mon Sep 17 00:00:00 2001 From: Adam Crume Date: Wed, 25 Jun 2014 08:38:49 -0700 Subject: [PATCH] doc: Fix malformed parameters in librados.h Fixes parameters for rados_write_op_operate and rados_aio_write_op_operate Fixes: #8661 Signed-off-by: Adam Crume --- src/include/rados/librados.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/include/rados/librados.h b/src/include/rados/librados.h index fd87f98aca3ea..7f1b958c8cded 100644 --- a/src/include/rados/librados.h +++ b/src/include/rados/librados.h @@ -2061,10 +2061,10 @@ void rados_write_op_set_alloc_hint(rados_write_op_t write_op, /** * Perform a write operation synchronously * @param write_op operation to perform - * @io the ioctx that the object is in - * @oid the object id - * @mtime the time to set the mtime to, NULL for the current time - * @flags flags to apply to the entire operation (LIBRADOS_OPERATION_*) + * @param io the ioctx that the object is in + * @param oid the object id + * @param mtime the time to set the mtime to, NULL for the current time + * @param flags flags to apply to the entire operation (LIBRADOS_OPERATION_*) */ int rados_write_op_operate(rados_write_op_t write_op, rados_ioctx_t io, @@ -2074,11 +2074,11 @@ int rados_write_op_operate(rados_write_op_t write_op, /** * Perform a write operation asynchronously * @param write_op operation to perform - * @io the ioctx that the object is in + * @param io the ioctx that the object is in * @param completion what to do when operation has been attempted - * @oid the object id - * @mtime the time to set the mtime to, NULL for the current time - * @flags flags to apply to the entire operation (LIBRADOS_OPERATION_*) + * @param oid the object id + * @param mtime the time to set the mtime to, NULL for the current time + * @param flags flags to apply to the entire operation (LIBRADOS_OPERATION_*) */ int rados_aio_write_op_operate(rados_write_op_t write_op, rados_ioctx_t io, -- 2.39.5