From e6b6d26d831b937832969459692b3b06a776a033 Mon Sep 17 00:00:00 2001 From: Mikko Lehto Date: Fri, 11 Aug 2017 22:45:03 +0300 Subject: [PATCH] core, modules: fix common documentation typo --- src/core/select.c | 4 ++-- src/core/select.h | 6 +++--- src/modules/avp/doc/avp_functions.xml | 12 ++++++------ src/modules/seas/seas.c | 2 +- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/core/select.c b/src/core/select.c index bf3e56730bb..21ba7f8573a 100644 --- a/src/core/select.c +++ b/src/core/select.c @@ -45,12 +45,12 @@ */ static select_table_t *select_list = &select_core_table; -/** the level of the select call that is beeing evaluated +/** the level of the select call that is being evaluated * by the child process */ int select_level = 0; -/** pointer to the SIP uri beeing processed. +/** pointer to the SIP uri being processed. * Nested function calls can pass information to each * other using this pointer. Only for performace reasons. * (Miklos) diff --git a/src/core/select.h b/src/core/select.h index 74c68e4b952..42de6f6db88 100644 --- a/src/core/select.h +++ b/src/core/select.h @@ -140,12 +140,12 @@ typedef struct select_table { struct select_table *next; } select_table_t; -/* the level of the select call that is beeing evaluated +/* the level of the select call that is being evaluated * by the child process */ extern int select_level; -/* pointer to the SIP uri beeing processed. +/* pointer to the SIP uri being processed. * Nested function calls can pass information to each * other using this pointer. Only for performace reasons. * (Miklos) @@ -198,7 +198,7 @@ void free_select(select_t *s); * Select parser, result is stored in SHARED memory * * If you call this, you must ensure, that the string which - * is beeing parsed MUST be at the same place for all child + * is being parsed MUST be at the same place for all child * processes, e.g. allocated in the shared memory as well * * parameters and results same as parse_select diff --git a/src/modules/avp/doc/avp_functions.xml b/src/modules/avp/doc/avp_functions.xml index d83644c4aef..fbf1d69b0e1 100644 --- a/src/modules/avp/doc/avp_functions.xml +++ b/src/modules/avp/doc/avp_functions.xml @@ -266,7 +266,7 @@ if (attr_equals_xl("my_avp", "%ct")) {
<function>insert_attr_hf(name)</function> - Inserts new header into the request, which is beeing forwarded. The AVP name is the name of the header field. + Inserts new header into the request, which is being forwarded. The AVP name is the name of the header field. If you need to insert header with name which differs from the AVP name use insert_attr_hf(header_name, $avp_name) instead. @@ -287,7 +287,7 @@ if (attr_equals_xl("my_avp", "%ct")) {
<function>insert_attr_hf(header_name, $avp_name)</function> - Inserts new header into the request, which is beeing forwarded. + Inserts new header into the request, which is being forwarded. Inserting means putting the header to the beginning of the request, before any others. @@ -321,7 +321,7 @@ insert_attr_hf("Route", "$my_route");
<function>append_attr_hf(name)</function> - Appends new header into the request, which is beeing forwarded. The AVP name is the name of the header field. + Appends new header into the request, which is being forwarded. The AVP name is the name of the header field. If you need to append header with name which differs from the AVP name use append_attr_hf(header_name, $avp_name) instead. @@ -342,7 +342,7 @@ insert_attr_hf("Route", "$my_route");
<function>append_attr_hf(header_name, $avp_name)</function> - Appends new header into the request, which is beeing forwarded. + Appends new header into the request, which is being forwarded. Appending means putting the header to the end of the request, after any others. @@ -367,7 +367,7 @@ insert_attr_hf("Route", "$my_route");
<function>replace_attr_hf(name)</function> - Replaces header in the request, which is beeing forwarded. The AVP name is the same as the name of the header field. + Replaces header in the request, which is being forwarded. The AVP name is the same as the name of the header field. If you need to replace header with name which differs from the AVP name use replace_attr_hf(header_name, $avp_name) instead. @@ -388,7 +388,7 @@ insert_attr_hf("Route", "$my_route");
<function>replace_attr_hf(header_name, $avp_name)</function> - Replaces header in the request, which is beeing forwarded. + Replaces header in the request, which is being forwarded. Replacing means removing all the headers with specified name and appending new one at the end, with the value from AVP. diff --git a/src/modules/seas/seas.c b/src/modules/seas/seas.c index 9c7b7745ece..0c162db5df7 100644 --- a/src/modules/seas/seas.c +++ b/src/modules/seas/seas.c @@ -743,7 +743,7 @@ static int seas_child_init(int rank) } /* this should close the sockets open to any of the application servers, and - * send them an EOF event or something that signals that SER is beeing shutdown, + * send them an EOF event or something that signals that SER is being shutdown, * so they could do their cleanup, etc. */ static int seas_exit(void)