configs: Spelling fixes

Correct typos of the following word families:

password
excludes
undesirable
checksums
through
screening
interpreting
database
causes
initiation
member
busydetect
defined
severely
throughput
recognized
counter
require
indefinitely
accounts

ASTERISK-29714

Change-Id: Ie8f2a7b274a162dd627ee6a2165f5e8a3876527e
This commit is contained in:
Josh Soref
2021-10-30 21:04:38 -04:00
committed by Friendly Automation
parent dcf492e7b6
commit ae83d927d8
18 changed files with 21 additions and 21 deletions

View File

@@ -55,7 +55,7 @@ TRUNKMSD = 1
--
-- include = {"a", "b", "c"};
--
-- Channel variables can be accessed thorugh the global 'channel' table.
-- Channel variables can be accessed through the global 'channel' table.
--
-- v = channel.var_name
-- v = channel["var_name"]
@@ -104,7 +104,7 @@ TRUNKMSD = 1
-- reserved word. In the 'goto' example, with Lua 5.1 or earlier, 'goto' is
-- not a reserved word so you'd be calling the Asterisk dialplan application
-- 'goto'. Lua 5.2 however, introduced the 'goto' control statement which
-- makes 'goto' a reserved word. This casues the interpreter to fail parsing
-- makes 'goto' a reserved word. This causes the interpreter to fail parsing
-- the file and pbx_lua.so will fail to load. The same applies to any use of
-- Lua tables including extensions, channels and any tables you create.
--