summaryrefslogtreecommitdiffstats
path: root/libnetdata/url
diff options
context:
space:
mode:
authorJosh Soref <jsoref@users.noreply.github.com>2021-04-14 05:27:54 -0400
committerGitHub <noreply@github.com>2021-04-14 12:27:54 +0300
commitfaef38c806515e3e314430a6093d8c11c1bd0691 (patch)
tree999e89b544a6a4013e5bee351fbc3cb844cba896 /libnetdata/url
parent523ba27649367a7673dd448c261a696628892733 (diff)
Spelling libnetdata (#10917)
Diffstat (limited to 'libnetdata/url')
-rw-r--r--libnetdata/url/url.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libnetdata/url/url.c b/libnetdata/url/url.c
index 3de94fde7e..f90b3d5897 100644
--- a/libnetdata/url/url.c
+++ b/libnetdata/url/url.c
@@ -68,7 +68,7 @@ char url_percent_escape_decode(char *s) {
*
* @param c is the utf8 character
* *
- * @return It reurns the length of the specific character.
+ * @return It returns the length of the specific character.
*/
char url_utf8_get_byte_length(char c) {
if(!IS_UTF8_BYTE(c))
@@ -226,7 +226,7 @@ char *url_decode_r(char *to, char *url, size_t size) {
*d = '\0';
- if(unlikely( utf8_check((unsigned char *)to) )) //NULL means sucess here
+ if(unlikely( utf8_check((unsigned char *)to) )) //NULL means success here
return NULL;
return to;