eolian/generator: @param[in,out] is the correct inout syntax
authorDaniel Kolesa <d.kolesa@osg.samsung.com>
Fri, 5 Jun 2015 14:08:48 +0000 (15:08 +0100)
committerDaniel Kolesa <d.kolesa@osg.samsung.com>
Fri, 5 Jun 2015 14:09:05 +0000 (15:09 +0100)
src/bin/eolian/docs_generator.c
src/tests/eolian/data/class_simple_ref_eo.h
src/tests/eolian/data/class_simple_ref_legacy.h

index 6272d46..df8ad76 100644 (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;
           }
 
index b430036..75d8c0c 100644 (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
index 29889f8..b116d9f 100644 (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