@cryptotaxi247 / netdata-1 / commits / d07f248e7

Spelling exporting (#10915)

Josh Soref committed Apr 14, 2021 at 05:25 UTC d07f248e7554f8c20e62ad8c65fbd8aaab67418f
7 files changed +12 -12
exporting/aws_kinesis/aws_kinesis_put_record.cc
+2 -2
@@ -110,11 +110,11 @@ void kinesis_put_record(
110 }
111
112 /**
113 - * Get results from service responces
113 + * Get results from service responses
114 *
115 * @param request_outcomes_p request outcome information.
116 * @param error_message report error message to a caller.
117 - * @param sent_bytes report to a caller how many bytes was successfuly sent.
117 + * @param sent_bytes report to a caller how many bytes was successfully sent.
118 * @param lost_bytes report to a caller how many bytes was lost during transmission.
119 * @return Returns 0 if all data was sent successfully, 1 when data was lost on transmission
120 */
exporting/exporting_engine.c
+1 -1
@@ -9,7 +9,7 @@ static struct engine *engine = NULL;
9 *
10 * Clean all variables allocated inside engine structure
11 *
12 - * @param en a pointer to the strcuture that will be cleaned.
12 + * @param en a pointer to the structure that will be cleaned.
13 */
14 static void exporting_clean_engine()
15 {
exporting/graphite/graphite.c
+2 -2
@@ -64,7 +64,7 @@ int init_graphite_instance(struct instance *instance)
64 }
65
66 /**
67 - * Copy a label value and substitute underscores in place of charachters which can't be used in Graphite output
67 + * Copy a label value and substitute underscores in place of characters which can't be used in Graphite output
68 *
69 * @param dst a destination string.
70 * @param src a source string.
@@ -205,7 +205,7 @@ int format_dimension_stored_graphite_plaintext(struct instance *instance, RRDDIM
205 }
206
207 /**
208 - * Ppepare HTTP header
208 + * Prepare HTTP header
209 *
210 * @param instance an instance data structure.
211 * @return Returns 0 on success, 1 on failure.
exporting/opentsdb/opentsdb.c
+2 -2
@@ -117,7 +117,7 @@ int init_opentsdb_http_instance(struct instance *instance)
117 }
118
119 /**
120 - * Copy a label value and substitute underscores in place of charachters which can't be used in OpenTSDB output
120 + * Copy a label value and substitute underscores in place of characters which can't be used in OpenTSDB output
121 *
122 * @param dst a destination string.
123 * @param src a source string.
@@ -256,7 +256,7 @@ int format_dimension_stored_opentsdb_telnet(struct instance *instance, RRDDIM *r
256 }
257
258 /**
259 - * Ppepare HTTP header
259 + * Prepare HTTP header
260 *
261 * @param instance an instance data structure.
262 * @return Returns 0 on success, 1 on failure.
exporting/prometheus/remote_write/remote_write.c
+1 -1
@@ -36,7 +36,7 @@ void prometheus_remote_write_prepare_header(struct instance *instance)
36 }
37
38 /**
39 - * Process a responce received after Prometheus remote write connector had sent data
39 + * Process a response received after Prometheus remote write connector had sent data
40 *
41 * @param buffer a response from a remote service.
42 * @param instance an instance data structure.
exporting/pubsub/pubsub_publish.cc
+3 -3
@@ -178,12 +178,12 @@ int pubsub_publish(void *pubsub_specific_data_p, char *error_message, size_t buf
178 }
179
180 /**
181 - * Get results from service responces
181 + * Get results from service responses
182 *
183 * @param pubsub_specific_data_p a pointer to a structure with instance-wide data.
184 * @param error_message report error message to a caller.
185 - * @param sent_metrics report to a caller how many metrics was successfuly sent.
186 - * @param sent_bytes report to a caller how many bytes was successfuly sent.
185 + * @param sent_metrics report to a caller how many metrics was successfully sent.
186 + * @param sent_bytes report to a caller how many bytes was successfully sent.
187 * @param lost_metrics report to a caller how many metrics was lost during transmission.
188 * @param lost_bytes report to a caller how many bytes was lost during transmission.
189 * @return Returns 0 if all data was sent successfully, 1 when data was lost on transmission.
exporting/tests/netdata_doubles.c
+1 -1
@@ -2,7 +2,7 @@
2
3 #include "test_exporting_engine.h"
4
5 -// Use memomy allocation functions guarded by CMocka in strdupz
5 +// Use memory allocation functions guarded by CMocka in strdupz
6 const char *__wrap_strdupz(const char *s)
7 {
8 char *duplicate = malloc(sizeof(char) * (strlen(s) + 1));