[Asterisk-code-review] spelling: separate (asterisk[master])

Josh Soref asteriskteam at digium.com
Sun Nov 7 00:16:39 CDT 2021


Josh Soref has uploaded this change for review. ( https://gerrit.asterisk.org/c/asterisk/+/17186 )


Change subject: spelling: separate
......................................................................

spelling: separate

Change-Id: Ibb54e770a76d8bf27d8396c19799f2dc180e1acb
---
M addons/ooh323c/src/ooGkClient.c
M apps/app_confbridge.c
M channels/sip/reqresp_parser.c
M include/asterisk/ari.h
M include/asterisk/endpoints.h
M include/asterisk/stasis.h
M main/enum.c
M res/res_pjsip_outbound_authenticator_digest.c
M rest-api-templates/asterisk_processor.py
9 files changed, 10 insertions(+), 10 deletions(-)



  git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/86/17186/1

diff --git a/addons/ooh323c/src/ooGkClient.c b/addons/ooh323c/src/ooGkClient.c
index 255afbb..f6b2f95 100644
--- a/addons/ooh323c/src/ooGkClient.c
+++ b/addons/ooh323c/src/ooGkClient.c
@@ -2876,7 +2876,7 @@
  * Gk responds with RCF with empty terminalAlias field thus indicating both
  * the aliases were accepted. If this function is called, it will even mark
  * the earlier two unregistered aliases as registered. We will have to
- * maintain a separete list of aliases being sent in RRQ for this.
+ * maintain a separate list of aliases being sent in RRQ for this.
  */
 int ooGkClientUpdateRegisteredAliases
    (ooGkClient *pGkClient, H225_SeqOfH225AliasAddress *pAddresses,
diff --git a/apps/app_confbridge.c b/apps/app_confbridge.c
index 4c70e3e..2858597 100644
--- a/apps/app_confbridge.c
+++ b/apps/app_confbridge.c
@@ -2919,7 +2919,7 @@
 		conference->b_profile.sounds);
 
 	if (strcmp(conference->b_profile.language, ast_channel_language(user->chan))) {
-		/* The host needs to hear it seperately, as they don't get the audio from play_sound_helper */
+		/* The host needs to hear it separately, as they don't get the audio from play_sound_helper */
 		ast_stream_and_wait(user->chan, sound_to_play, "");
 
 		/* Announce to the group that all participants are muted */
diff --git a/channels/sip/reqresp_parser.c b/channels/sip/reqresp_parser.c
index ae7bbf0..c57066d 100644
--- a/channels/sip/reqresp_parser.c
+++ b/channels/sip/reqresp_parser.c
@@ -2406,7 +2406,7 @@
 		return NULL;
 	}
 
-	/* seperate the first via-parm */
+	/* separate the first via-parm */
 	via = strsep(&via, ",");
 
 	/* chop off sent-protocol */
diff --git a/include/asterisk/ari.h b/include/asterisk/ari.h
index 9777b8f..de55762 100644
--- a/include/asterisk/ari.h
+++ b/include/asterisk/ari.h
@@ -91,7 +91,7 @@
 struct ast_ari_response {
 	/*! Response message */
 	struct ast_json *message;
-	/*! \r\n seperated response headers */
+	/*! \r\n separated response headers */
 	struct ast_str *headers;
 	/*! HTTP response code.
 	 * See http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html */
diff --git a/include/asterisk/endpoints.h b/include/asterisk/endpoints.h
index ee73dc6..28d5e90 100644
--- a/include/asterisk/endpoints.h
+++ b/include/asterisk/endpoints.h
@@ -30,7 +30,7 @@
  * to/from Asterisk. While this is a very useful concept for end users, it is
  * surprisingly \a not a core concept within Asterisk itself.
  *
- * This file defines \ref ast_endpoint as a seperate object, which channel
+ * This file defines \ref ast_endpoint as a separate object, which channel
  * drivers may use to expose their concept of an endpoint. As the channel driver
  * creates channels, it can use ast_endpoint_add_channel() to associate channels
  * to the endpoint. This updates the endpoint appropriately, and forwards all of
diff --git a/include/asterisk/stasis.h b/include/asterisk/stasis.h
index 275dc1e..e950ecc 100644
--- a/include/asterisk/stasis.h
+++ b/include/asterisk/stasis.h
@@ -33,7 +33,7 @@
  *
  * The Stasis Message Bus is a loosely typed mechanism for distributing messages
  * within Asterisk. It is designed to be:
- *  - Loosely coupled; new message types can be added in seperate modules.
+ *  - Loosely coupled; new message types can be added in separate modules.
  *  - Easy to use; publishing and subscribing are straightforward operations.
  *
  * There are three main concepts for using the Stasis Message Bus:
diff --git a/main/enum.c b/main/enum.c
index 4d17c56..14c78e6 100644
--- a/main/enum.c
+++ b/main/enum.c
@@ -740,7 +740,7 @@
 	 * This code does more than simple RFC3261 ENUM. All these rewriting
 	 * schemes have in common that they build the FQDN for the NAPTR lookup
 	 * by concatenating
-	 *    - a number which needs be flipped and "."-seperated 	(left)
+	 *    - a number which needs be flipped and "."-separated 	(left)
 	 *    - some fixed string					(middle)
 	 *    - an Apex.						(apex)
 	 *
diff --git a/res/res_pjsip_outbound_authenticator_digest.c b/res/res_pjsip_outbound_authenticator_digest.c
index 3f8732c..04f29c9 100644
--- a/res/res_pjsip_outbound_authenticator_digest.c
+++ b/res/res_pjsip_outbound_authenticator_digest.c
@@ -319,7 +319,7 @@
 			auth_cred.data_type = PJSIP_CRED_DATA_DIGEST;
 			break;
 		case AST_SIP_AUTH_TYPE_GOOGLE_OAUTH:
-			/* nothing to do. handled seperately in res_pjsip_outbound_registration */
+			/* nothing to do. handled separately in res_pjsip_outbound_registration */
 			break;
 		case AST_SIP_AUTH_TYPE_ARTIFICIAL:
 			ast_log(LOG_ERROR,
diff --git a/rest-api-templates/asterisk_processor.py b/rest-api-templates/asterisk_processor.py
index a47e63a..0f3809b 100644
--- a/rest-api-templates/asterisk_processor.py
+++ b/rest-api-templates/asterisk_processor.py
@@ -52,7 +52,7 @@
 
 
 def snakify(name):
-    """Helper to take a camelCase or dash-seperated name and make it
+    """Helper to take a camelCase or dash-separated name and make it
     snake_case.
     """
     r = ''
@@ -80,7 +80,7 @@
         self.name = simple_name(name)
         #: True if segment is a {pathVar}, else None.
         self.is_wildcard = None
-        #: Underscore seperated name all ancestor segments
+        #: Underscore separated name all ancestor segments
         self.full_name = None
         #: Dictionary of child PathSegements
         self.__children = OrderedDict()

-- 
To view, visit https://gerrit.asterisk.org/c/asterisk/+/17186
To unsubscribe, or for help writing mail filters, visit https://gerrit.asterisk.org/settings

Gerrit-Project: asterisk
Gerrit-Branch: master
Gerrit-Change-Id: Ibb54e770a76d8bf27d8396c19799f2dc180e1acb
Gerrit-Change-Number: 17186
Gerrit-PatchSet: 1
Gerrit-Owner: Josh Soref <jsoref at gmail.com>
Gerrit-CC: Friendly Automation
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20211107/64a13e75/attachment-0001.html>


More information about the asterisk-code-review mailing list