Skip to content

Commit

Permalink
Fix typo in parameter name.
Browse files Browse the repository at this point in the history
  • Loading branch information
ryouze committed Sep 24, 2024
1 parent 78c1718 commit 45b6a9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/string.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace core::string {
* @param paths Vector of filesystem paths (e.g., {"/path/to/file1", "/path/to/file2"}).
* @return Vector of strings (e.g., {"/path/to/file1", "/path/to/file2"}).
*/
[[nodiscard]] std::vector<std::string> paths_to_strings(const std::vector<std::filesystem::path> &v);
[[nodiscard]] std::vector<std::string> paths_to_strings(const std::vector<std::filesystem::path> &paths);

/**
* @brief Convert a string to lowercase.
Expand Down

0 comments on commit 45b6a9d

Please sign in to comment.