From 22df29b5683e05fabddbe4ca464e287697726dd8 Mon Sep 17 00:00:00 2001 From: Brian West Date: Tue, 30 Jun 2009 02:12:35 +0000 Subject: [PATCH] corrections thanks diego git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@14042 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/applications/mod_commands/mod_commands.c | 2 +- src/mod/applications/mod_expr/mod_expr.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mod/applications/mod_commands/mod_commands.c b/src/mod/applications/mod_commands/mod_commands.c index 1281cae25b..e4568cf031 100644 --- a/src/mod/applications/mod_commands/mod_commands.c +++ b/src/mod/applications/mod_commands/mod_commands.c @@ -3532,7 +3532,7 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_commands_load) SWITCH_ADD_API(commands_api_interface, "domain_exists", "check if a domain exists", domain_exists_function, ""); SWITCH_ADD_API(commands_api_interface, "uuid_send_dtmf", "send dtmf digits", uuid_send_dtmf_function, UUID_SEND_DTMF_SYNTAX); SWITCH_ADD_API(commands_api_interface, "eval", "eval (noop)", eval_function, "[uuid: ]"); - SWITCH_ADD_API(commands_api_interface, "expand", "expand vars and exexute", expand_function, "[uuid: ] "); + SWITCH_ADD_API(commands_api_interface, "expand", "expand vars and execute", expand_function, "[uuid: ] "); SWITCH_ADD_API(commands_api_interface, "echo", "echo", echo_function, ""); SWITCH_ADD_API(commands_api_interface, "stun", "stun", stun_function, "[:port]"); SWITCH_ADD_API(commands_api_interface, "system", "Execute a system command", system_function, SYSTEM_SYNTAX); diff --git a/src/mod/applications/mod_expr/mod_expr.c b/src/mod/applications/mod_expr/mod_expr.c index 9ed3784066..0d910c9f8d 100644 --- a/src/mod/applications/mod_expr/mod_expr.c +++ b/src/mod/applications/mod_expr/mod_expr.c @@ -195,7 +195,7 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_expr_load) /* connect my internal structure to the blank pointer passed to me */ *module_interface = switch_loadable_module_create_module_interface(pool, modname); - SWITCH_ADD_API(commands_api_interface, "expr", "Eval an expession", expr_function, ""); + SWITCH_ADD_API(commands_api_interface, "expr", "Eval an expression", expr_function, ""); /* indicate that the module should continue to be loaded */