aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil
diff options
context:
space:
mode:
authorMoshe Kaplan <me@moshekaplan.com>2021-12-19 21:40:23 -0500
committerAndersBroman <a.broman58@gmail.com>2021-12-22 11:01:11 +0000
commit69d54d6f8e668b6018375121ea2afb99f3dd0177 (patch)
treed0fffa200bbaf4ef325ac00c75a79d682bf379c6 /wsutil
parentb5928542b77cf789b112370bb7acc00942162519 (diff)
Corrects repeated words throughout the code.
Repeated words were found with: egrep "(\b[a-zA-Z]+) +\1\b" . -Ir and then manually reviewed. Non-displayed strings (e.g., in comments) were also corrected, to ease future review.
Diffstat (limited to 'wsutil')
-rw-r--r--wsutil/to_str.c2
-rw-r--r--wsutil/win32-utils.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/wsutil/to_str.c b/wsutil/to_str.c
index f30ad0bcb7..4c1cb5cfe1 100644
--- a/wsutil/to_str.c
+++ b/wsutil/to_str.c
@@ -210,7 +210,7 @@ bytes_to_hexstr_punct(char *out, const guint8 *ad, size_t len, char punct)
}
/* Routine to convert a sequence of bytes to a hex string, one byte/two hex
- * digits at at a time, with a specified punctuation character between
+ * digits at a time, with a specified punctuation character between
* the bytes.
*
* If punct is '\0', no punctuation is applied (and thus
diff --git a/wsutil/win32-utils.h b/wsutil/win32-utils.h
index f2c24c2870..2ec9d8bc05 100644
--- a/wsutil/win32-utils.h
+++ b/wsutil/win32-utils.h
@@ -60,7 +60,7 @@ const char * win32strexception(DWORD exception);
/**
* @brief ws_pipe_create_process Create a process and assign it to the main application
- * job object so that it will be killed the the main application exits.
+ * job object so that it will be killed when the main application exits.
* @param application_name Application name. Will be converted to its UTF-16 equivalent or NULL.
* @param command_line Command line. Will be converted to its UTF-16 equivalent.
* @param process_attributes Same as CreateProcess.