summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/source/backends/wininetbe/wininetbackend.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/source/backends/wininetbe/wininetbackend.cxx b/shell/source/backends/wininetbe/wininetbackend.cxx
index b6bcae4a8fc5..5334877d3451 100644
--- a/shell/source/backends/wininetbe/wininetbackend.cxx
+++ b/shell/source/backends/wininetbe/wininetbackend.cxx
@@ -160,7 +160,7 @@ WinInetBackend::WinInetBackend()
// proxy is enabled or not
// We use InternetQueryOptionW (see https://msdn.microsoft.com/en-us/library/aa385101);
- // it fills INTERNET_PROXY_INFO struct which is definned in WinInet.h to have LPCTSTR
+ // it fills INTERNET_PROXY_INFO struct which is defined in WinInet.h to have LPCTSTR
// (i.e., the UNICODE-dependent generic string type expanding to const wchar_t* when
// UNICODE is defined, and InternetQueryOption macro expands to InternetQueryOptionW).
// Thus, it's natural to expect that W version would return wide strings. But it's not