Fix documentation of get_config_path().

This commit is contained in:
tastytea 2021-05-20 10:03:09 +02:00
parent 541a63dd73
commit f57555fb3a
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 3 additions and 3 deletions

View File

@ -32,9 +32,9 @@ po::variables_map parse_options(int argc, char *argv[]);
/*!
* @brief Returns the path of the config file.
*
* Tries these paths: ${XDG_CONFIG_HOME}/epubgrep.conf
* ${HOME}/.config/epubgrep.conf
* epubgrep.conf
* If XDG_CONFIG_HOME is set: ${XDG_CONFIG_HOME}/epubgrep.conf
* If HOME is set: ${HOME}/.config/epubgrep.conf
* Otherwise: epubgrep.conf
*/
std::string get_config_path();