summaryrefslogtreecommitdiff
path: root/pbx.c
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2006-05-09 16:24:07 +0000
committerKevin P. Fleming <kpfleming@digium.com>2006-05-09 16:24:07 +0000
commited3ffb4b46e5ea11dd78568dc85555ce39c35831 (patch)
treecbee3b6bd1df69ca7b222c47ef446c7f204283a0 /pbx.c
parent674c5e9b0b02cde4ad924ba4ff3a1f6eb3e66a05 (diff)
various doxygen fixes
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@26170 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'pbx.c')
-rw-r--r--pbx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pbx.c b/pbx.c
index 4662d79c2..437fc658c 100644
--- a/pbx.c
+++ b/pbx.c
@@ -173,7 +173,7 @@ struct ast_context {
struct ast_app {
int (*execute)(struct ast_channel *chan, void *data);
const char *synopsis; /*!< Synopsis text for 'show applications' */
- const char *description; /*!< Description (help text) for 'show application <name>' */
+ const char *description; /*!< Description (help text) for 'show application &lt;name&gt;' */
AST_LIST_ENTRY(ast_app) list; /*!< Next app in list */
struct module *module; /*!< Module this app belongs to */
char name[0]; /*!< Name of the application */
@@ -1230,7 +1230,7 @@ int ast_custom_function_register(struct ast_custom_function *acf)
}
/*! \brief return a pointer to the arguments of the function,
- * and terminates the function name with '\0'
+ * and terminates the function name with '\\0'
*/
static char *func_args(char *function)
{