Browse Source

tmx: fixed t_reply_callid() name in example

Daniel-Constantin Mierla 15 years ago
parent
commit
308b619349
2 changed files with 5 additions and 5 deletions
  1. 3 3
      modules_k/tmx/README
  2. 2 2
      modules_k/tmx/doc/tmx_admin.xml

+ 3 - 3
modules_k/tmx/README

@@ -56,7 +56,7 @@ Daniel-Constantin Mierla
 
    1.1. t_cancel_branches usage
    1.2. t_cancel_callid usage
-   1.3. t_cancel_reply usage
+   1.3. t_reply_callid usage
 
 Chapter 1. Admin Guide
 
@@ -175,9 +175,9 @@ if (t_cancel_callid("123qaz", "5", "22")) {
 
    This function can be used in ANY_ROUTE.
 
-   Example 1.3. t_cancel_reply usage
+   Example 1.3. t_reply_callid usage
 ...
-if (t_cancel_reply("123qaz", "5", "458", "Replied remotely")) {
+if (t_reply_callid("123qaz", "5", "458", "Replied remotely")) {
         xlog("transaction replied\n");
 }
 ...

+ 2 - 2
modules_k/tmx/doc/tmx_admin.xml

@@ -161,10 +161,10 @@ if (t_cancel_callid("123qaz", "5", "22")) {
 		This function can be used in ANY_ROUTE.
 		</para>
 		<example>
-		<title><function>t_cancel_reply</function> usage</title>
+		<title><function>t_reply_callid</function> usage</title>
 		<programlisting format="linespecific">
 ...
-if (t_cancel_reply("123qaz", "5", "458", "Replied remotely")) {
+if (t_reply_callid("123qaz", "5", "458", "Replied remotely")) {
 	xlog("transaction replied\n");
 }
 ...