diff options
-rw-r--r-- | libbutl/path.mxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libbutl/path.mxx b/libbutl/path.mxx index cab11f5..25f29c6 100644 --- a/libbutl/path.mxx +++ b/libbutl/path.mxx @@ -719,13 +719,13 @@ LIBBUTL_MODEXPORT namespace butl bool root () const; - // The following predicates return true for the "." and ".." paths, + // The following predicates return true for the `.` and `..` paths, // respectively. Note that the result doesn't depend on the presence or // spelling of the trailing directory separator. // // Also note that the path must literally match the specified values rather - // than be semantically current or parent. For example for paths "foo/.." - // or "bar/../.." the predicates return false. + // than be semantically current or parent. For example for paths `foo/..` + // or `bar/../..` these predicates return false. // bool current () const; |