summaryrefslogtreecommitdiff
path: root/tools/source/misc/pathutils.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tools/source/misc/pathutils.cxx')
-rw-r--r--tools/source/misc/pathutils.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/misc/pathutils.cxx b/tools/source/misc/pathutils.cxx
index 0b3f172ee3ed..577e5491b5ca 100644
--- a/tools/source/misc/pathutils.cxx
+++ b/tools/source/misc/pathutils.cxx
@@ -48,7 +48,7 @@ WCHAR * buildPath(
{
// Remove leading ".." segments in the second path together with matching
// segments in the first path that are neither empty nor "." nor ".." nor
- // end in ":" (which is not foolprove, as it can erroneously erase the start
+ // end in ":" (which is not foolproof, as it can erroneously erase the start
// of a UNC path, but only if the input is bad data):
while (backLength >= 2 && backBegin[0] == L'.' && backBegin[1] == L'.' &&
(backLength == 2 || backBegin[2] == L'\\'))