From b9a6648b9301f1c4e3b30a4094de3f07d787f92f Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Tue, 16 Apr 2019 12:17:05 +0300 Subject: [PATCH] Fixed a typo in the comment. --- include/boost/filesystem/path.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/filesystem/path.hpp b/include/boost/filesystem/path.hpp index 8c73916..7ba211b 100644 --- a/include/boost/filesystem/path.hpp +++ b/include/boost/filesystem/path.hpp @@ -536,7 +536,7 @@ namespace path_detail // intentionally don't use filesystem::detail to not bring bool is_relative() const { return !is_absolute(); } bool is_absolute() const { - // Windows CE has no root name (aka driver letters) + // Windows CE has no root name (aka drive letters) # if defined(BOOST_WINDOWS_API) && !defined(UNDER_CE) return has_root_name() && has_root_directory(); # else