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 ee1ece0..cab11f5 100644 --- a/libbutl/path.mxx +++ b/libbutl/path.mxx @@ -698,13 +698,13 @@ LIBBUTL_MODEXPORT namespace butl empty () const {return this->path_.empty ();} // Note that size does not include the trailing separator except for - // the root case. + // the POSIX root case. // size_type size () const {return this->path_.size ();} - // Return true if this path doesn't have any directories. Note that "/foo" - // is not a simple path (it is "foo" in root directory) while "/" is (it + // Return true if this path doesn't have any directories. Note that `/foo` + // is not a simple path (it is `foo` in root directory) while `/` is (it // is the root directory). // bool |