hermet pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=1d281906f22b7c94cca1e4ee46d0b9518fe59f9d
commit 1d281906f22b7c94cca1e4ee46d0b9518fe59f9d Author: Jee-Yong Um <con...@gmail.com> Date: Thu Sep 1 20:04:48 2016 +0900 eina_matrix: add missing "*" for doxygen Summary: "/**" requires for doxygen, but one "*" is omitted for the reference of eina_matrix3_multiply(). Reviewers: Hermet Reviewed By: Hermet Subscribers: cedric, jpeg Differential Revision: https://phab.enlightenment.org/D4266 --- src/lib/eina/eina_matrix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/eina/eina_matrix.h b/src/lib/eina/eina_matrix.h index 14dcd8e..338dd7e 100644 --- a/src/lib/eina/eina_matrix.h +++ b/src/lib/eina/eina_matrix.h @@ -692,7 +692,7 @@ EAPI void eina_matrix3_array_set(Eina_Matrix3 *m, const double *v); */ EAPI void eina_matrix3_copy(Eina_Matrix3 *dst, const Eina_Matrix3 *src); -/* +/** * @brief Multiply two matrix * * @param out The resulting matrix --