summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--file_io/win32/open.c2
-rw-r--r--threadproc/win32/signals.c2
-rw-r--r--uri/apr_uri.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/file_io/win32/open.c b/file_io/win32/open.c
index c6afa5fe8..55397ca69 100644
--- a/file_io/win32/open.c
+++ b/file_io/win32/open.c
@@ -55,7 +55,7 @@ apr_status_t utf8_to_unicode_path(apr_wchar_t* retstr, apr_size_t retlen,
apr_status_t rv;
/* This is correct, we don't twist the filename if it is will
- * definately be shorter than 248 characters. It merits some
+ * definitely be shorter than 248 characters. It merits some
* performance testing to see if this has any effect, but there
* seem to be applications that get confused by the resulting
* Unicode \\?\ style file names, especially if they use argv[0]
diff --git a/threadproc/win32/signals.c b/threadproc/win32/signals.c
index f19fb0324..48676d856 100644
--- a/threadproc/win32/signals.c
+++ b/threadproc/win32/signals.c
@@ -31,7 +31,7 @@
/* Windows only really support killing process, but that will do for now.
*
* ### Actually, closing the input handle to the proc should also do fine
- * for most console apps. This definately needs improvement...
+ * for most console apps. This definitely needs improvement...
*/
APR_DECLARE(apr_status_t) apr_proc_kill(apr_proc_t *proc, int signal)
{
diff --git a/uri/apr_uri.c b/uri/apr_uri.c
index 5f16c664b..cd8e6ff4b 100644
--- a/uri/apr_uri.c
+++ b/uri/apr_uri.c
@@ -334,7 +334,7 @@ deal_with_authority:
/* If there's a username:password@host:port, the @ we want is the last @...
* too bad there's no memrchr()... For the C purists, note that hostinfo
- * is definately not the first character of the original uri so therefore
+ * is definitely not the first character of the original uri so therefore
* &hostinfo[-1] < &hostinfo[0] ... and this loop is valid C.
*/
do {