aboutsummaryrefslogtreecommitdiffstats
path: root/funcs
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-05-19 20:31:39 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-05-19 20:31:39 +0000
commit86deae0165fffb146f680ae837ec47f85d3f4ddb (patch)
treef817280b5ad44fe32308eb6b5e6b11941587d21e /funcs
parent23d0303bfa7bb96054e8deb543f3645a30b7b4b3 (diff)
minor doc fixes
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5743 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'funcs')
-rwxr-xr-xfuncs/func_db.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/funcs/func_db.c b/funcs/func_db.c
index 5a95ef7cb..bc3202da7 100755
--- a/funcs/func_db.c
+++ b/funcs/func_db.c
@@ -100,7 +100,7 @@ struct ast_custom_function db_function = {
"will write a value to the database. On a read, this function\n"
"returns the value from the datase, or NULL if it does not exist.\n"
"On a write, this function will always return NULL. Reading a database value\n"
- "will also set the global variable DB_RESULT.\n",
+ "will also set the variable DB_RESULT.\n",
.read = function_db_read,
.write = function_db_write,
};
@@ -148,7 +148,7 @@ struct ast_custom_function db_exists_function = {
.syntax = "DB_EXISTS(<family>/<key>)",
.desc = "This function will check to see if a key exists in the Asterisk\n"
"database. If it exists, the function will return \"1\". If not,\n"
- "it will return \"0\". Checking for existance of database value will\n"
- "also set the global variable DB_RESULT to that value if it exists.\n",
+ "it will return \"0\". Checking for existence of a database key will\n"
+ "also set the variable DB_RESULT to the key's value if it exists.\n",
.read = function_db_exists,
};