hermet pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=16ee5b7a5f8ae5fbed46e7d5cedae6d0c80462cc

commit 16ee5b7a5f8ae5fbed46e7d5cedae6d0c80462cc
Author: Jee-Yong Um <con...@gmail.com>
Date:   Mon Oct 10 13:57:42 2016 +0900

    ecore_ipc: fix typos in documentation group names
    
    Summary: fix typos in documentation group names to grouping APIs correctly
    
    Reviewers: cedric, jpeg, Hermet
    
    Reviewed By: Hermet
    
    Differential Revision: https://phab.enlightenment.org/D4333
---
 src/lib/ecore_ipc/Ecore_Ipc.h | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/lib/ecore_ipc/Ecore_Ipc.h b/src/lib/ecore_ipc/Ecore_Ipc.h
index 928ade9..e7f3222 100644
--- a/src/lib/ecore_ipc/Ecore_Ipc.h
+++ b/src/lib/ecore_ipc/Ecore_Ipc.h
@@ -457,7 +457,7 @@ EAPI int               
ecore_ipc_server_send(Ecore_Ipc_Server *svr, int major, i
  *                        drops. This causes the kernel to queue up to 4096
  *                        connections (or your kernel's limit, whichever is
  *                        lower).
- * @ingroup Ecore_Ipc_Server_Group
+ * @ingroup Ecore_IPC_Server_Group
  */
 EAPI void              ecore_ipc_server_client_limit_set(Ecore_Ipc_Server 
*svr, int client_limit, char reject_excess_clients);
 
@@ -466,7 +466,7 @@ EAPI void              
ecore_ipc_server_client_limit_set(Ecore_Ipc_Server *svr,
  *
  * @param   svr           The given server.
  * @param   size          The maximum data payload size in bytes.
- * @ingroup Ecore_Ipc_Server_Group
+ * @ingroup Ecore_IPC_Server_Group
  */
 EAPI void              ecore_ipc_server_data_size_max_set(Ecore_Ipc_Server 
*srv, int size);
 
@@ -475,7 +475,7 @@ EAPI void              
ecore_ipc_server_data_size_max_set(Ecore_Ipc_Server *srv,
  *
  * @param   svr           The given server.
  * @return The maximum data payload in bytes.
- * @ingroup Ecore_Ipc_Server_Group
+ * @ingroup Ecore_IPC_Server_Group
  */
 EAPI int               ecore_ipc_server_data_size_max_get(Ecore_Ipc_Server 
*srv);
 
@@ -487,7 +487,7 @@ EAPI int               
ecore_ipc_server_data_size_max_get(Ecore_Ipc_Server *srv)
  *          the connected server in the form "XXX.YYY.ZZZ.AAA" IP notation.
  *          This string should not be modified or trusted to stay valid after
  *          deletion for the @p svr object. If no IP is known NULL is returned.
- * @ingroup Ecore_Ipc_Server_Group
+ * @ingroup Ecore_IPC_Server_Group
  */
 EAPI const char       *ecore_ipc_server_ip_get(Ecore_Ipc_Server *svr);
 
@@ -495,7 +495,7 @@ EAPI const char       
*ecore_ipc_server_ip_get(Ecore_Ipc_Server *svr);
  * @brief Flushes all pending data to the given server. Will return when done.
  *
  * @param   svr           The given server.
- * @ingroup Ecore_Ipc_Server_Group
+ * @ingroup Ecore_IPC_Server_Group
  */
 EAPI void              ecore_ipc_server_flush(Ecore_Ipc_Server *svr);
 
@@ -567,7 +567,7 @@ EAPI void             
*ecore_ipc_client_data_get(Ecore_Ipc_Client *cl);
  *
  * @param   cl        The given client.
  * @param   size          The maximum data payload size in bytes.
- * @ingroup Ecore_Ipc_Client_Group
+ * @ingroup Ecore_IPC_Client_Group
  */
 EAPI void              ecore_ipc_client_data_size_max_set(Ecore_Ipc_Client 
*cl, int size);
 
@@ -576,7 +576,7 @@ EAPI void              
ecore_ipc_client_data_size_max_set(Ecore_Ipc_Client *cl,
  *
  * @param   cl            The given client.
  * @return The maximum data payload size in bytes on success, @c -1 on failure.
- * @ingroup Ecore_Ipc_Client_Group
+ * @ingroup Ecore_IPC_Client_Group
  */
 EAPI int               ecore_ipc_client_data_size_max_get(Ecore_Ipc_Client 
*cl);
 
@@ -589,7 +589,7 @@ EAPI int               
ecore_ipc_client_data_size_max_get(Ecore_Ipc_Client *cl);
  *          This string should not be modified or trusted to stay valid after
  *          deletion for the @p cl object. If no IP is known @c NULL is
  *          returned.
- * @ingroup Ecore_Ipc_Client_Group
+ * @ingroup Ecore_IPC_Client_Group
  */
 EAPI const char       *ecore_ipc_client_ip_get(Ecore_Ipc_Client *cl);
 
@@ -597,7 +597,7 @@ EAPI const char       
*ecore_ipc_client_ip_get(Ecore_Ipc_Client *cl);
  * @brief Flushes all pending data to the given client. Will return when done.
  *
  * @param   cl            The given client.
- * @ingroup Ecore_Ipc_Client_Group
+ * @ingroup Ecore_IPC_Client_Group
  */
 EAPI void              ecore_ipc_client_flush(Ecore_Ipc_Client *cl);
 

-- 


Reply via email to