aboutsummaryrefslogtreecommitdiffstats
path: root/doc/modules.txt
diff options
context:
space:
mode:
author(no author) <(no author)@f38db490-d61c-443f-a65b-d21fe96a405b>2004-04-13 04:46:23 +0000
committer(no author) <(no author)@f38db490-d61c-443f-a65b-d21fe96a405b>2004-04-13 04:46:23 +0000
commitd46468f42c6762ce7646e773c7d0919ed1f626d4 (patch)
tree5d62a34385385b3485137835b2629174ca0464cf /doc/modules.txt
parentf38bc8131c9eda8d0b0eabaafbaa53f4247989c4 (diff)
This commit was manufactured by cvs2svn to create tag 'v0_9_0'.
git-svn-id: http://svn.digium.com/svn/asterisk/tags/v0_9_0@2684 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'doc/modules.txt')
-rwxr-xr-xdoc/modules.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/modules.txt b/doc/modules.txt
index 9f8ae20b5..4f6d4c67b 100755
--- a/doc/modules.txt
+++ b/doc/modules.txt
@@ -3,8 +3,8 @@ All modules must have at least the following functions:
int load_module():
Do what you need to do when you get started. This function
-returns 0 on sucess and non-zero on failure (it is not considered loaded
-if it failes.
+returns 0 on success and non-zero on failure (it is not considered loaded
+if it fails.
int unload_module():
@@ -12,7 +12,7 @@ int unload_module():
features, you should give them a softhangup in an effort to keep the
program from crashing. Generally, unload_module is only called when the
usecount is 0 or less, but the user can force unloading at their
-discression, and thus a module should do its best to comply (although in
+discretion, and thus a module should do its best to comply (although in
some cases there may be no way to avoid a crash). This function should
return 0 on success and non-zero on failure (i.e. it cannot yet be
unloaded).