aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/astobj2.h
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-07-02 14:50:45 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-07-02 14:50:45 +0000
commitd470c1559eb7f4366f5bccc1d2de72fde28bd6ff (patch)
treeeedb0c832e2091d52a827669bc93e9453bd0bde2 /include/asterisk/astobj2.h
parent745361390b6ad331d10b9ae854f88984b12722ec (diff)
Fix a bunch of places where \arg was used instead of \param. Using \arg
to document arguments seems logical, and does work, but is not the best thing to use. \arg in doxygen is simply for creating non-nested unordered lists. \param is the correct tag to use to document function parameters, and will come out better in the generated documentation. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@127401 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/astobj2.h')
-rw-r--r--include/asterisk/astobj2.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asterisk/astobj2.h b/include/asterisk/astobj2.h
index 5f9776004..ddf29c7e1 100644
--- a/include/asterisk/astobj2.h
+++ b/include/asterisk/astobj2.h
@@ -708,8 +708,8 @@ void *_ao2_link(struct ao2_container *c, void *newobj);
/*!
* \brief Remove an object from the container
*
- * \arg c the container
- * \arg obj the object to unlink
+ * \param c the container
+ * \param obj the object to unlink
*
* \retval NULL, always
*