diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-01-31 13:24:19 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-01-31 13:24:19 +0200 |
commit | 9db3d0846e8f9e5bf232310075ec3e507b26d4f0 (patch) | |
tree | ab41014c0531493f55f64d102c55c89c47275f44 | |
parent | e47ed2a264364cace0519ee16f152fe882f2e6f8 (diff) |
Cosmetic change
-rw-r--r-- | libbutl/path.mxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libbutl/path.mxx b/libbutl/path.mxx index 4062cad..464224f 100644 --- a/libbutl/path.mxx +++ b/libbutl/path.mxx @@ -659,7 +659,7 @@ LIBBUTL_MODEXPORT namespace butl clear () {this->_clear ();} // Get/set current working directory. Throw std::system_error to report - // the underlying OS errors. + // underlying OS errors. // static dir_type current_directory () {return dir_type (traits::current_directory ());} @@ -667,13 +667,13 @@ LIBBUTL_MODEXPORT namespace butl static void current_directory (basic_path const&); - // Return the user home directory. Throw std::system_error to report the + // Return the user home directory. Throw std::system_error to report // underlying OS errors. // static dir_type home_directory () {return dir_type (traits::home_directory ());} - // Return the temporary directory. Throw std::system_error to report the + // Return the temporary directory. Throw std::system_error to report // underlying OS errors. // static dir_type @@ -682,8 +682,8 @@ LIBBUTL_MODEXPORT namespace butl // Return a temporary path. The path is constructed by starting with the // temporary directory and then appending a path component consisting of // the prefix followed by the process id following by a unique counter - // value inside the process. Throw std::system_error to report the - // underlying OS errors. + // value inside the process. Throw std::system_error to report underlying + // OS errors. // static basic_path temp_path (const string_type& prefix) |