diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-02-04 14:48:19 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-02-04 14:48:19 +0200 |
commit | 239c198350b27554ff9014d674517e3eb2780ab2 (patch) | |
tree | 72bede3d4e7b8b60a8b71aa9fe772e13712d9385 | |
parent | 7625f25175fe732b674f3a8c16151b59cefedc27 (diff) |
Cosmetic changes
-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 |