From f57555fb3a1c6637237c2a2a3052711693978352 Mon Sep 17 00:00:00 2001 From: tastytea Date: Thu, 20 May 2021 10:03:09 +0200 Subject: [PATCH] Fix documentation of get_config_path(). --- src/options.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/options.hpp b/src/options.hpp index 8f6d197..425d5be 100644 --- a/src/options.hpp +++ b/src/options.hpp @@ -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();