docs: Fix typos in apps/

Found via codespell
This commit is contained in:
Luz Paz
2025-04-09 09:02:27 -04:00
parent c9532225f8
commit af49027ccc
21 changed files with 38 additions and 38 deletions

View File

@@ -66,7 +66,7 @@
<description>
<para>Connects to the given TCP server, then transmits channel audio as 16-bit, 8KHz mono PCM over that socket (other codecs available via the channel driver interface). In turn, PCM audio is received from the socket and sent to the channel. Only audio frames and DTMF frames will be transmitted.</para>
<para>Protocol is specified at https://docs.asterisk.org/Configuration/Channel-Drivers/AudioSocket/</para>
<para>This application does not automatically answer and should generally be preceeded by an application such as Answer() or Progress().</para>
<para>This application does not automatically answer and should generally be preceded by an application such as Answer() or Progress().</para>
</description>
</application>
***/
@@ -163,7 +163,7 @@ static int audiosocket_run(struct ast_channel *chan, const char *id, int svc, co
}
if (ast_audiosocket_init(svc, id)) {
ast_log(LOG_ERROR, "Failed to intialize AudioSocket\n");
ast_log(LOG_ERROR, "Failed to initialize AudioSocket\n");
return -1;
}