summaryrefslogtreecommitdiffstats
path: root/src/configoptions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/configoptions.cpp')
-rw-r--r--src/configoptions.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/configoptions.cpp b/src/configoptions.cpp
index 5f7f281..9d4f75f 100644
--- a/src/configoptions.cpp
+++ b/src/configoptions.cpp
@@ -208,7 +208,7 @@ void addConfigOptions(Config *cfg)
cb = cfg->addBool(
"SHORT_NAMES",
"If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter\n"
- "(but less readable) file names. This can be useful is your file systems\n"
+ "(but less readable) file names. This can be useful if your file system\n"
"doesn't support long names like on DOS, Mac, or CD-ROM.",
FALSE
);
@@ -329,7 +329,7 @@ void addConfigOptions(Config *cfg)
"to include (a tag file for) the STL sources as input, then you should\n"
"set this tag to YES in order to let doxygen match functions declarations and\n"
"definitions whose arguments contain STL classes (e.g. func(std::string); v.s.\n"
- "func(std::string) {}). This also make the inheritance and collaboration\n"
+ "func(std::string) {}). This also makes the inheritance and collaboration\n"
"diagrams that involve STL classes more complete and accurate.",
FALSE
);
@@ -353,7 +353,7 @@ void addConfigOptions(Config *cfg)
"IDL_PROPERTY_SUPPORT",
"For Microsoft's IDL there are propget and propput attributes to indicate getter\n"
"and setter methods for a property. Setting this option to YES (the default)\n"
- "will make doxygen to replace the get and set methods by a property in the\n"
+ "will make doxygen replace the get and set methods by a property in the\n"
"documentation. This will only work if the methods are indeed getting or\n"
"setting a simple type. If this is not the case, or you want to show the\n"
"methods anyway, you should set this option to NO.",
@@ -459,7 +459,7 @@ void addConfigOptions(Config *cfg)
"extracted and appear in the documentation as a namespace called\n"
"'anonymous_namespace{file}', where file will be replaced with the base\n"
"name of the file that contains the anonymous namespace. By default\n"
- "anonymous namespace are hidden.",
+ "anonymous namespaces are hidden.",
FALSE
);
//----
@@ -641,10 +641,10 @@ void addConfigOptions(Config *cfg)
ci = cfg->addInt(
"MAX_INITIALIZER_LINES",
"The MAX_INITIALIZER_LINES tag determines the maximum number of lines\n"
- "the initial value of a variable or define consists of for it to appear in\n"
+ "the initial value of a variable or macro consists of for it to appear in\n"
"the documentation. If the initializer consists of more lines than specified\n"
"here it will be hidden. Use a value of 0 to hide initializers completely.\n"
- "The appearance of the initializer of individual variables and defines in the\n"
+ "The appearance of the initializer of individual variables and macros in the\n"
"documentation can be controlled using \\showinitializer or \\hideinitializer\n"
"command in the documentation regardless of this setting.",
0,10000,30
@@ -744,7 +744,7 @@ void addConfigOptions(Config *cfg)
//----
cb = cfg->addBool(
"WARN_NO_PARAMDOC",
- "This WARN_NO_PARAMDOC option can be abled to get warnings for\n"
+ "The WARN_NO_PARAMDOC option can be abled to get warnings for\n"
"functions that are documented, but have no documentation for their parameters\n"
"or return value. If set to NO (the default) doxygen will only warn about\n"
"wrong or incomplete parameter documentation, but not about the absence of\n"
@@ -2141,7 +2141,7 @@ void addConfigOptions(Config *cfg)
cb = cfg->addBool(
"GRAPHICAL_HIERARCHY",
"If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen\n"
- "will graphical hierarchy of all classes instead of a textual one.",
+ "will generate a graphical hierarchy of all classes instead of a textual one.",
TRUE
);
cb->addDependency("HAVE_DOT");
@@ -2159,7 +2159,7 @@ void addConfigOptions(Config *cfg)
ce = cfg->addEnum(
"DOT_IMAGE_FORMAT",
"The DOT_IMAGE_FORMAT tag can be used to set the image format of the images\n"
- "generated by dot. Possible values are png, jpg, or gif\n"
+ "generated by dot. Possible values are png, jpg, or gif.\n"
"If left blank png will be used.",
"png"
);