diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-01-29 13:27:50 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-01-29 13:27:50 +0200 |
commit | 7562d28ff7e0dad216c7f72145b23938d979fe7c (patch) | |
tree | eb78b9507e267f3b8e963f80523bef2afac30cf1 | |
parent | 9b91bf718fdb53ea517642d248a4acf2a9e73359 (diff) |
Minor comment fixes
-rw-r--r-- | libbutl/path.mxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libbutl/path.mxx b/libbutl/path.mxx index a1e253b..705cbd6 100644 --- a/libbutl/path.mxx +++ b/libbutl/path.mxx @@ -379,7 +379,7 @@ LIBBUTL_MODEXPORT namespace butl } // Get/set current working directory. Throw std::system_error to report - // the underlying OS errors. + // underlying OS errors. // static string_type current_directory (); @@ -387,13 +387,13 @@ LIBBUTL_MODEXPORT namespace butl static void current_directory (string_type 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 string_type 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 string_type @@ -401,7 +401,7 @@ LIBBUTL_MODEXPORT namespace butl // Return a temporary name. The name is constructed by starting with the // prefix followed by the process id following by a unique counter value - // inside the process (MT-safe). Throw std::system_error to report the + // inside the process (MT-safe). Throw std::system_error to report // underlying OS errors. // static string_type |