eolian/generator: @param[in,out] is the correct inout syntax

This commit is contained in:
Daniel Kolesa 2015-06-05 15:08:48 +01:00
parent e3a16aeacd
commit a45c3db808
3 changed files with 4 additions and 4 deletions

View File

@ -305,8 +305,8 @@ docs_generate_function(const Eolian_Function *fid, Eolian_Function_Type ftype, i
curl += sizeof(" * @param[out] ") - 1;
break;
case EOLIAN_INOUT_PARAM:
eina_strbuf_append(buf, " * @param[inout] ");
curl += sizeof(" * @param[inout] ") - 1;
eina_strbuf_append(buf, " * @param[in,out] ");
curl += sizeof(" * @param[in,out] ") - 1;
break;
}

View File

@ -49,7 +49,7 @@ EOAPI void evas_obj_simple_b_set(void);
/**
* @brief comment foo
*
* @param[inout] b
* @param[in,out] b
* @param[out] c
*
* @return comment for method return

View File

@ -41,7 +41,7 @@ EAPI void evas_object_simple_b_set(Class_Simple *obj);
/**
* @brief comment foo
*
* @param[inout] b
* @param[in,out] b
* @param[out] c
*
* @return comment for method return