]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
corrections thanks diego
authorBrian West <brian@freeswitch.org>
Tue, 30 Jun 2009 02:12:35 +0000 (02:12 +0000)
committerBrian West <brian@freeswitch.org>
Tue, 30 Jun 2009 02:12:35 +0000 (02:12 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@14042 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/applications/mod_commands/mod_commands.c
src/mod/applications/mod_expr/mod_expr.c

index 1281cae25b88bf7ed8bbc94a97fb766d1eca6315..e4568cf0315806aebda2c4ec73d7b279618f12b6 100644 (file)
@@ -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, "<domain>");
        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:<uuid> ]<expression>");
-       SWITCH_ADD_API(commands_api_interface, "expand", "expand vars and exexute", expand_function, "[uuid:<uuid> ]<cmd> <args>");
+       SWITCH_ADD_API(commands_api_interface, "expand", "expand vars and execute", expand_function, "[uuid:<uuid> ]<cmd> <args>");
        SWITCH_ADD_API(commands_api_interface, "echo", "echo", echo_function, "<data>");
        SWITCH_ADD_API(commands_api_interface, "stun", "stun", stun_function, "<stun_server>[:port]");
        SWITCH_ADD_API(commands_api_interface, "system", "Execute a system command", system_function, SYSTEM_SYNTAX);
index 9ed3784066b2ffe4e6a1c5c2f25dc1329b22685c..0d910c9f8dd8ca2feaa2b83d64a4ec19dda6f066 100644 (file)
@@ -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, "<expr>");
+       SWITCH_ADD_API(commands_api_interface, "expr", "Eval an expression", expr_function, "<expr>");
 
 
        /* indicate that the module should continue to be loaded */