diff options
Diffstat (limited to 'src/config.l')
-rw-r--r-- | src/config.l | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/config.l b/src/config.l index 97571c8..b45097c 100644 --- a/src/config.l +++ b/src/config.l @@ -813,14 +813,14 @@ void Config::writeTemplate(FTextStream &t,bool sl,bool upd) if (!sl) { t << "# This file describes the settings to be used by the documentation system\n"; - t << "# doxygen (www.doxygen.org) for a project\n"; + t << "# doxygen (www.doxygen.org) for a project.\n"; t << "#\n"; - t << "# All text after a hash (#) is considered a comment and will be ignored\n"; + t << "# All text after a hash (#) is considered a comment and will be ignored.\n"; t << "# The format is:\n"; t << "# TAG = value [value, ...]\n"; t << "# For lists items can also be appended using:\n"; t << "# TAG += value [value, ...]\n"; - t << "# Values that contain spaces should be placed between quotes (\" \")\n"; + t << "# Values that contain spaces should be placed between quotes (\" \").\n"; } ConfigOption *option = m_options->first(); while (option) |